:root {
	--primary-700: #0c2f5f; /* Dyrham Park blue */
	--primary-600: #0c2f5f;
	--primary-500: #0c2f5f;
	--text-900: #0f172a;
	--text-700: #334155;
	--text-contrast: #ffffff;
	--bg-50: #f7fafc;
	--bg-100: #eef2f6;
	--surface: #ffffff;
	--shadow: 0 6px 20px rgba(2, 18, 38, 0.12);
}

* {
	box-sizing: border-box;
}

html, body {
	height: 100%;
}

body {
	margin: 0;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	color: var(--text-900);
	background: linear-gradient(180deg, var(--bg-50), var(--bg-100));
}

.site-header {
	position: sticky;
	top: 0;
	background: var(--primary-700);
	color: var(--text-contrast);
	box-shadow: var(--shadow);
	z-index: 1000;
}

.header-inner {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 16px;
	position: relative; /* anchor popover to header container */
}

.header-ctas {
	display: inline-flex;
	gap: 8px;
	margin-left: 8px;
    flex-shrink: 0; /* prevent wrapping */
}
.header-btn {
	text-decoration: none;
	padding: 8px 12px;
	border-radius: 8px;
	font-weight: 700;
	box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    white-space: nowrap; /* keep on one line */
}
.header-btn-primary { background: #ffd54f; color: #0c2f5f; }
.header-btn-secondary { background: rgba(255,255,255,0.18); color: #fff; border: 1px solid rgba(255,255,255,0.25); }

.brand {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	color: inherit;
}

.brand-logo {
	height: 40px;
	width: auto;
	border-radius: 4px;
	background: #fff;
	object-fit: contain;
	box-shadow: 0 2px 8px rgba(0,0,0,0.15);
	margin-right: 10px;
}

.brand-name {
	font-weight: 800;
	letter-spacing: 0.2px;
	font-size: 18px;
}

.site-nav {
	display: none; /* hidden on small screens until toggled */
	gap: 10px;
	flex-wrap: wrap;
}
.menu-toggle {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	cursor: pointer;
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
	height: 40px;
	margin-left: auto;
    padding: 10px 16px;
	transition: all 0.2s ease;
}

.menu-toggle:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.3);
	transform: translateY(-1px);
}
.menu-icon {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.menu-bar {
	width: 24px;
	height: 4px;
	background: var(--text-contrast);
	display: block;
	border-radius: 2px;
	transition: all 0.2s ease;
}

.menu-text {
	color: var(--text-contrast);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.3px;
	margin-top: 2px;
	white-space: nowrap;
	transition: all 0.2s ease;
}

/* Ensure hamburger is always visible on desktop too */
.menu-toggle { display: inline-flex !important; }

.site-nav.open { display: block; }

/* Dropdown panel styling */
.site-nav {
	position: absolute;
	right: 0;
	top: calc(100% + 8px);
	background: var(--surface);
	border-radius: 10px;
	box-shadow: var(--shadow);
	padding: 8px 10px;
	min-width: 200px;
	border: 1px solid #e5eaf1;
	z-index: 1001;
}

.site-nav .nav-link {
	display: block;
	color: var(--primary-700);
	padding: 8px 10px;
	border-radius: 6px;
}

.site-nav .nav-link:hover,
.site-nav .nav-link:focus-visible {
	background: #f1f5fb;
}

/* Do not auto-show the menu on large screens; always toggle via button */

.nav-link {
	color: var(--text-contrast);
	text-decoration: none;
	padding: 8px 10px;
	border-radius: 6px;
	transition: background 0.2s ease, color 0.2s ease;
	font-weight: 600;
	opacity: 0.95;
}

/* Mobile tweaks to keep Sign Up on one line */
@media (max-width: 480px) {
	.header-inner { flex-wrap: nowrap; }
	.brand { flex: 1 1 auto; min-width: 0; justify-content: flex-start; }
	.brand-logo { display: inline-block; height: 20px; width: auto; margin-right: 6px; }
	.brand-name { font-size: 12.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 52vw; line-height: 1.2; }
	.header-ctas { gap: 6px; }
	.header-btn { padding: 6px 8px; font-size: 12.5px; }
	.menu-toggle { height: 32px; padding: 6px 8px; gap: 6px; }
	.menu-text { font-size: 10px; }
	.menu-bar { width: 16px; height: 2px; }
}

.nav-link:hover,
.nav-link:focus-visible {
	background: rgba(255,255,255,0.14);
	outline: none;
	opacity: 1;
}

.nav-link.external::after {
	content: "↗";
	margin-left: 6px;
	font-size: 12px;
	opacity: 0.9;
}

.site-main {
	max-width: 1100px;
	margin: 28px auto;
	padding: 0 16px 32px;
}

.hero {
	background: var(--surface);
	border-radius: 14px;
	box-shadow: var(--shadow);
	padding: 28px;
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 20px;
	align-items: center;
}

.hero h1 {
	margin: 0 0 8px;
	font-size: 28px;
}

.hero p {
	margin: 0 0 14px;
	color: var(--text-700);
}

.cta {
	display: inline-block;
	background: var(--primary-600);
	color: var(--text-contrast);
	text-decoration: none;
	padding: 10px 14px;
	border-radius: 10px;
	font-weight: 700;
	box-shadow: 0 6px 16px rgba(0,58,112,0.3);
}

.card {
	background: var(--surface);
	border-radius: 12px;
	box-shadow: var(--shadow);
	padding: 20px;
}
/* Contact layout enhancements */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-quick { background:#fff; border:1px solid #e5eaf1; border-radius:12px; padding:16px; box-shadow:0 4px 12px rgba(0,0,0,0.05); }
.contact-quick h3 { margin:0 0 10px; color: var(--primary-700); }
.contact-item { display:flex; align-items:center; gap:10px; padding:8px 0; }
.contact-icon { width:22px; height:22px; border-radius:6px; display:inline-block; }
.contact-icon-img { width:22px; height:22px; border-radius:6px; display:inline-block; object-fit:cover; }
.contact-icon.insta { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.contact-icon.whats { background:#25D366; }

.grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

form label {
	display: block;
	font-weight: 600;
	margin: 12px 0 6px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
select, textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #d5dbe3;
	border-radius: 10px;
	background: #fff;
	font: inherit;
}

button,
input[type="submit"] {
	background: var(--primary-700);
	color: var(--text-contrast);
	border: none;
	padding: 12px 16px;
	border-radius: 10px;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 8px 16px rgba(0,58,112,0.28);
}

.site-footer {
	background: var(--surface);
	border-top: 1px solid #e5eaf1;
	padding: 20px 0;
}

.footer-inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 16px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.footer-links a {
	color: var(--primary-600);
	text-decoration: none;
	font-weight: 600;
	margin-right: 8px;
}

.video-container {
	position: relative;
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
	background: #000;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.padel-video {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 12px;
}

.card h2 {
	color: var(--primary-700);
	margin-top: 0;
	font-size: 24px;
}

.card h3 {
	color: var(--primary-700);
	margin-top: 0;
	font-size: 20px;
}

.card ul {
	padding-left: 20px;
}

.card li {
	margin-bottom: 8px;
	line-height: 1.5;
}

.cta {
	display: inline-block;
	background: var(--primary-700);
	color: var(--text-contrast);
	text-decoration: none;
	padding: 12px 20px;
	border-radius: 10px;
	font-weight: 700;
	box-shadow: 0 6px 16px rgba(12,47,95,0.3);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(12,47,95,0.4);
}

/* New Dynamic Layout Styles */
.hero-section {
	background: linear-gradient(135deg, var(--primary-700) 0%, #1a4a7a 100%);
	color: white;
	padding: 60px 0;
	margin: 0;
}

.hero-container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 16px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}

.hero-content h1 {
	font-size: 3rem;
	font-weight: 800;
	margin: 0 0 16px;
	line-height: 1.1;
}

.hero-subtitle {
	font-size: 1.2rem;
	margin: 0 0 32px;
	opacity: 0.9;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin: 32px 0;
}
/* Wrap to center CTA directly under stats width */
.hero-stats-wrap { display: block; margin: 0 auto; }
@media (min-width: 901px) {
    .hero-stats-wrap { width: fit-content; }
}
.hero-content { text-align: left; }
@media (max-width: 900px) { .hero-content { text-align: center; } }
.hero-stats-wrap .cta-large { display: block; margin: 12px auto 0; text-align: center; }
/* Center the primary CTA under the stats */
.cta-large { margin: 12px auto 0; }

.stat {
	text-align: center;
}

.stat-number {
	display: block;
	font-size: 2rem;
	font-weight: 800;
	color: #ffd700;
}

.stat-label {
	font-size: 0.9rem;
	opacity: 0.8;
}

.cta-large {
	display: inline-block;
	background: #ffd700;
	color: var(--primary-700);
	padding: 16px 32px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 800;
	font-size: 1.1rem;
	box-shadow: 0 8px 24px rgba(255,215,0,0.3);
	transition: all 0.3s ease;
}

.cta-large:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 32px rgba(255,215,0,0.4);
}

.hero-video {
	display: flex;
	justify-content: center;
}

.about-section {
	padding: 80px 0;
	background: var(--bg-50);
}

.section-content {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 16px;
}

.about-section h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 48px;
	color: var(--primary-700);
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.feature {
	text-align: center;
	padding: 32px 20px;
	background: white;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	transition: transform 0.3s ease;
}

.feature:hover {
	transform: translateY(-8px);
}

.feature-icon {
	font-size: 3rem;
	margin-bottom: 16px;
}

.feature h3 {
	color: var(--primary-700);
	margin: 0 0 12px;
	font-size: 1.3rem;
}

.feature p {
	color: var(--text-700);
	line-height: 1.6;
	margin: 0;
}

.details-section {
	padding: 80px 0;
	background: white;
}

.details-section h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 48px;
	color: var(--primary-700);
}

.timeline {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
}

.timeline::before {
	content: '';
	position: absolute;
	left: 60px;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(180deg, var(--primary-700) 0%, #1a4a7a 100%);
	border-radius: 2px;
}

.timeline-item {
	position: relative;
	margin-bottom: 48px;
	padding-left: 120px;
}

.timeline-item:last-child {
	margin-bottom: 0;
}

.timeline-icon {
	position: absolute;
	left: 0;
	top: 0;
	width: 120px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.icon-circle {
	width: 60px;
	height: 60px;
	background: var(--primary-700);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	box-shadow: 0 8px 24px rgba(12,47,95,0.3);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover .icon-circle {
	transform: scale(1.1);
	box-shadow: 0 12px 32px rgba(12,47,95,0.4);
}

.timeline-content {
	background: white;
	padding: 32px;
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(0,0,0,0.08);
	border: 1px solid #e5eaf1;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover .timeline-content {
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.timeline-content h3 {
	color: var(--primary-700);
	margin: 0 0 12px;
	font-size: 1.4rem;
	font-weight: 700;
}

.timeline-content p {
	color: var(--text-700);
	margin: 0 0 16px;
	line-height: 1.6;
	font-size: 1.1rem;
}

.timeline-details {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.detail-tag {
	background: var(--bg-50);
	color: var(--primary-700);
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 600;
	border: 1px solid #e5eaf1;
}

.cta-section {
	padding: 80px 0;
	background: linear-gradient(135deg, var(--primary-700) 0%, #1a4a7a 100%);
	color: white;
	text-align: center;
}

.cta-section h2 {
	font-size: 2.5rem;
	margin: 0 0 16px;
}

.cta-section p {
	font-size: 1.2rem;
	margin: 0 0 32px;
	opacity: 0.9;
}

.cta-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.cta-primary {
	background: #ffd700;
	color: var(--primary-700);
	padding: 16px 32px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 800;
	font-size: 1.1rem;
	box-shadow: 0 8px 24px rgba(255,215,0,0.3);
	transition: all 0.3s ease;
}

.cta-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 32px rgba(255,215,0,0.4);
}

.cta-secondary {
	background: transparent;
	color: white;
	padding: 16px 32px;
	border: 2px solid white;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 800;
	font-size: 1.1rem;
	transition: all 0.3s ease;
}

.cta-secondary:hover {
	background: white;
	color: var(--primary-700);
}

/* Signup Page Styles */
.signup-section {
	padding: 80px 0;
	background: var(--bg-50);
}

/* Rules Page */
.rules-section { padding: 80px 0; background: var(--bg-50); }
.rules-section .section-content { max-width: 900px; margin: 0 auto; padding: 0 16px; }
.rules-section h1 { text-align: center; color: var(--primary-700); font-size: 2.2rem; margin: 0 0 12px; }
.rules-section .lead { text-align: center; font-size: 1.1rem; color: var(--text-700); margin: 0 0 28px; }
.rule-block { background: #fff; border: 1px solid #e5eaf1; border-radius: 12px; padding: 20px; margin-bottom: 16px; box-shadow: 0 4px 16px rgba(0,0,0,0.05); }
.rule-block h2 { margin: 0 0 10px; color: var(--primary-700); font-size: 1.3rem; }
.rule-block ul { margin: 0 0 0 18px; padding: 0; }
.rule-block li { margin: 6px 0; line-height: 1.5; color: var(--text-700); }
.rule-block ol { margin: 6px 0 0 20px; }
.rules-section .closing { margin-top: 20px; text-align: center; font-weight: 600; color: var(--primary-700); }

.signup-section h1 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 16px;
	color: var(--primary-700);
}

.signup-section p {
	text-align: center;
	font-size: 1.2rem;
	color: var(--text-700);
	margin-bottom: 48px;
}

.email-hint {
	max-width: 600px;
	margin: -24px auto 32px auto;
	text-align: center;
	color: #4a5568;
	font-size: 0.95rem;
}

.registration-notice {
	background: white;
	border: 1px solid #e5eaf1;
	border-radius: 12px;
	padding: 28px 32px;
	margin: 0 auto 40px auto;
	max-width: 600px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	text-align: center;
	display: flex;
	align-items: flex-start;
	gap: 16px;
	justify-content: center;
}

.notice-icon {
	font-size: 28px;
	flex-shrink: 0;
	margin-top: 2px;
	opacity: 0.9;
}

.notice-content {
	flex: 1 1 auto;
	text-align: center;
	max-width: 520px;
	margin: 0 auto;
}

.notice-content h3 {
	margin: 0 0 16px 0;
	color: var(--primary-700);
	font-size: 1.3rem;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.notice-content p {
	margin: 0;
	color: var(--text-700);
	line-height: 1.7;
	font-size: 1.05rem;
}

.notice-content strong {
	font-weight: 700;
	color: var(--primary-700);
	background: rgba(12, 47, 95, 0.08);
	padding: 2px 6px;
	border-radius: 4px;
}

/* Stack icon above text on small screens for better balance */
@media (max-width: 600px) {
	.registration-notice {
		flex-direction: column;
		align-items: center;
		gap: 10px;
	}
	.notice-icon { margin-top: 0; }
	.notice-content { text-align: center; }
}

.signup-form-container {
	max-width: 600px;
	margin: 0 auto;
	background: white;
	padding: 48px;
	border-radius: 20px;
	box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

.form-group {
	margin-bottom: 24px;
}

.form-group label {
	display: block;
	font-weight: 600;
	margin-bottom: 8px;
	color: var(--primary-700);
	font-size: 1.1rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
	width: 100%;
	padding: 16px 20px;
	border: 2px solid #e5eaf1;
	border-radius: 12px;
	background: #fff;
	font-size: 1rem;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus {
	outline: none;
	border-color: var(--primary-700);
	box-shadow: 0 0 0 3px rgba(12,47,95,0.1);
}

.form-group select {
	width: 100%;
	padding: 16px 20px;
	border: 2px solid #e5eaf1;
	border-radius: 12px;
	background: #fff;
	font-size: 1rem;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group select:focus {
	outline: none;
	border-color: var(--primary-700);
	box-shadow: 0 0 0 3px rgba(12,47,95,0.1);
}

.form-group small {
	display: block;
	margin-top: 6px;
	color: var(--text-700);
	font-size: 0.9rem;
}

.partner-section {
	background: var(--bg-50);
	padding: 24px;
	border-radius: 12px;
	margin: 24px 0;
	border: 2px solid #e5eaf1;
}

.partner-section h3 {
	color: var(--primary-700);
	margin: 0 0 20px;
	font-size: 1.3rem;
}

.partner-field {
	margin-bottom: 20px;
}

.partner-field:last-child {
	margin-bottom: 0;
}

.partner-field label {
	font-size: 1rem;
	margin-bottom: 6px;
}

.partner-field input {
	padding: 12px 16px;
	font-size: 0.95rem;
}

.checkbox-group {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 12px;
}

.checkbox-option {
	display: flex;
	align-items: center;
	cursor: pointer;
	padding: 16px 20px;
	background: var(--bg-50);
	border: 2px solid #e5eaf1;
	border-radius: 12px;
	transition: all 0.3s ease;
	font-weight: 500;
}

.checkbox-option:hover {
	background: #f7fafc;
	border-color: var(--primary-700);
}

.checkbox-option input[type="checkbox"] {
	width: 20px;
	height: 20px;
	margin-right: 16px;
	accent-color: var(--primary-700);
	transform: scale(1.1);
}

.checkbox-option input[type="checkbox"]:checked + .checkbox-label {
	color: var(--primary-700);
	font-weight: 600;
}

.checkbox-option:has(input[type="checkbox"]:checked) {
	background: rgba(12,47,95,0.05);
	border-color: var(--primary-700);
}

.checkbox-label {
	font-size: 1rem;
	user-select: none;
}

/* Removed conflicting checkbox styles - now using .checkbox-option styling */

/* Mobile-specific checkbox improvements */
@media (max-width: 600px) {
	.checkbox-option {
		padding: 12px 16px;
	}
	
	.checkbox-option input[type="checkbox"] {
		width: 22px;
		height: 22px;
		margin-right: 12px;
		transform: scale(1.2);
	}
	
	.checkbox-label {
		font-size: 0.95rem;
		line-height: 1.4;
	}
}

.form-actions {
	text-align: center;
	margin-top: 32px;
}

/* After submit hint inside success message */
.after-submit-hint {
	margin-top: 10px;
	font-size: 0.95rem;
	color: #065f46;
}

/* Signup: Terms consent */
.terms-consent {
	background: var(--surface);
	border: 1px solid #e5eaf1;
	border-radius: 12px;
	padding: 14px 16px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.terms-consent .checkbox-option {
	background: transparent;
	border: none;
	padding: 0;
	margin: 0;
}

.terms-consent .checkbox-option:hover {
	background: transparent;
	border: none;
}

.terms-consent .checkbox-option:has(input[type="checkbox"]:checked) {
	background: transparent;
	border: none;
}

.terms-link {
	color: var(--primary-700);
	text-decoration: underline;
}

.terms-note {
	color: #4a5568;
	font-size: 0.9rem;
}

.cta-primary {
    background: #ffd700;
    color: var(--primary-700);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 8px 24px rgba(255,215,0,0.3);
    transition: all 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255,215,0,0.4);
}

.form-message {
	padding: 16px 20px;
	border-radius: 12px;
	margin-bottom: 24px;
	font-weight: 600;
}

.form-message.success {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.form-message.error {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

.form-message ul {
	margin: 8px 0 0 20px;
	padding: 0;
}

.form-message li {
	margin-bottom: 4px;
}

/* reCAPTCHA Styles */
.g-recaptcha {
	margin: 16px 0;
	display: flex;
	justify-content: center;
}

.g-recaptcha > div {
	margin: 0 auto;
}

/* Ensure reCAPTCHA iframe is visible */
.g-recaptcha iframe {
	border: none;
	border-radius: 4px;
}

@media (max-width: 800px) {
	.hero-container {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	
	.hero-section {
		padding: 40px 0;
	}
	
	.hero-content h1 {
		font-size: 2.2rem;
	}
	
	.hero-stats {
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}
	
	.features-grid {
		grid-template-columns: 1fr;
	}
	
	.timeline::before {
		left: 30px;
	}
	
	.timeline-item {
		padding-left: 80px;
	}
	
	.timeline-icon {
		width: 60px;
	}
	
	.icon-circle {
		width: 50px;
		height: 50px;
		font-size: 1.4rem;
	}
	
	.timeline-content {
		padding: 24px;
	}
	
	.timeline-content h3 {
		font-size: 1.2rem;
	}
	
	.timeline-content p {
		font-size: 1rem;
	}
	
	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}
	
	.cta-primary,
	.cta-secondary {
		width: 100%;
		max-width: 300px;
		text-align: center;
	}
	
	.video-container {
		max-width: 100%;
	}
}

/* Terms & Conditions Page Styles */
.terms-section {
	padding: 40px 0;
	background: var(--surface);
}

.terms-section h1 {
	color: var(--primary-700);
	font-size: 2.5rem;
	margin-bottom: 24px;
	text-align: center;
}

.terms-section h2 {
	color: var(--primary-700);
	font-size: 1.8rem;
	margin-top: 32px;
	margin-bottom: 16px;
	border-bottom: 2px solid #e5eaf1;
	padding-bottom: 8px;
}

.terms-section p, .terms-section li {
	font-size: 1.1rem;
	line-height: 1.7;
	color: var(--text-700);
	margin-bottom: 12px;
}

.terms-section ul {
	padding-left: 25px;
	margin-bottom: 20px;
}

.terms-section ul li {
	margin-bottom: 8px;
}