@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
 --primary-color: #ca8a04; /* Gold */
 --primary-dark: #a16207;
 --secondary-color: #374151; /* Elegant Charcoal */
 --text-dark: #1f2937;
 --text-light: #4b5563;
 --text-muted: #6b7280;
 --bg-light: #fefce8; /* Lighter variant of Warm Beige */
 --bg-white: #ffffff;
 --border-color: #e5e7eb;
 --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.05), 0 1px 2px 0 rgba(0, 0, 0, 0.03);
 --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
 --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
 --radius-sm: 4px;
 --radius-md: 8px;
 --radius-lg: 16px;
 --transition: all 0.3s ease-in-out;
 --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

*, *::before, *::after {
 box-sizing: border-box;
 margin: 0;
 padding: 0;
}

html {
 scroll-behavior: smooth;
}

body {
 font-family: var(--font-main);
 font-size: 16px;
 line-height: 1.6;
 color: var(--text-light);
 background: var(--bg-white);
 -webkit-font-smoothing: antialiased;
}

img {
 max-width: 100%;
 height: auto;
 display: block;
}

h1, h2, h3, h4, h5, h6 {
 font-weight: 700;
 line-height: 1.2;
 color: var(--text-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.75rem); }

a {
 color: var(--primary-color);
 text-decoration: none;
 transition: var(--transition);
}

a:hover {
 color: var(--primary-dark);
}

.page-wrapper {
 padding-top: 70px;
}

/* Header & Navigation */
.header {
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 z-index: 1000;
 background: rgba(255, 255, 255, 0.9);
 backdrop-filter: blur(10px);
 -webkit-backdrop-filter: blur(10px);
 box-shadow: var(--shadow-sm);
 transition: var(--transition);
}

.header.scrolled {
 background: rgba(255, 255, 255, 0.98);
 box-shadow: var(--shadow-md);
}

.nav {
 max-width: 1280px;
 margin: 0 auto;
 padding: 0 24px;
 height: 70px;
 display: flex;
 align-items: center;
 justify-content: space-between;
}

.nav-logo {
 font-size: 1.5rem;
 font-weight: 700;
 color: var(--secondary-color);
}

.nav-links {
 display: flex;
 gap: 32px;
 list-style: none;
}

.nav-links a {
 font-weight: 600;
 color: var(--text-light);
 padding: 8px 0;
 position: relative;
 font-size: 0.95rem;
}

.nav-links a::after {
 content: '';
 position: absolute;
 bottom: 0;
 left: 0;
 width: 0;
 height: 2px;
 background: var(--primary-color);
 transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
 color: var(--primary-color);
}

.nav-links a:hover::after,
.nav-links a.active::after {
 width: 100%;
}

.nav-toggle {
 display: none;
 background: none;
 border: none;
 cursor: pointer;
 padding: 8px;
 z-index: 1001;
}

.nav-toggle span {
 display: block;
 width: 24px;
 height: 2px;
 background: var(--text-dark);
 margin: 6px 0;
 transition: var(--transition);
}

/* Sections & Containers */
.section {
 padding: 80px 0;
}

.section-inner {
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 24px;
}

.section-inner.centered {
 display: flex;
 flex-direction: column;
 align-items: center;
}

.section-header {
 margin-bottom: 48px;
}

.section-header.centered {
 text-align: center;
 max-width: 750px;
 margin-left: auto;
 margin-right: auto;
}

.section-label, .badge {
 display: inline-block;
 background: var(--bg-light);
 color: var(--primary-dark);
 padding: 8px 16px;
 border-radius: 20px;
 font-size: 0.85rem;
 font-weight: 600;
 margin-bottom: 16px;
 border: 1px solid var(--primary-color);
}

.section-title {
 margin-bottom: 16px;
}

.section-subtitle {
 font-size: 1.1rem;
 line-height: 1.7;
}

.bg-light {
 background: var(--bg-light);
}

/* Hero Section */
.page-hero {
 padding: 100px 0;
 min-height: 80vh;
}
.hero-inner {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 48px;
 align-items: center;
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 24px;
}
.hero-copy h1 { margin-bottom: 24px; }
.hero-copy p { font-size: 1.1rem; margin-bottom: 32px; max-width: 550px; }
.hero-actions { display: flex; gap: 16px; margin-bottom: 32px; }
.hero-visual img {
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-lg);
 object-fit: cover;
 width: 100%;
 height: 100%;
 max-height: 500px;
}
.tag-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-pills span {
 font-size: 0.8rem;
 font-weight: 500;
 padding: 6px 14px;
 background: #f3f4f6;
 border-radius: 16px;
 color: var(--text-light);
}

.hero-small {
 padding: 100px 24px;
 background-size: cover;
 background-position: center;
 color: white;
 text-align: center;
 position: relative;
 border-radius: 0 0 var(--radius-lg) var(--radius-lg);
 margin-bottom: 80px;
}
.hero-small::before {
 content: '';
 position: absolute;
 inset: 0;
 background: rgba(0,0,0,0.5);
 border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.hero-small .hero-content {
 position: relative;
 z-index: 1;
}
.hero-small h1 { color: white; margin-bottom: 16px; }
.hero-small p { max-width: 600px; margin: 0 auto; opacity: 0.9; }

/* Buttons */
.btn {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 gap: 8px;
 padding: 14px 28px;
 font-size: 1rem;
 font-weight: 600;
 border-radius: var(--radius-md);
 cursor: pointer;
 transition: var(--transition);
 border: 2px solid transparent;
 text-decoration: none;
}
.btn-primary {
 background: var(--primary-color);
 color: white;
}
.btn-primary:hover {
 background: var(--primary-dark);
 transform: translateY(-2px);
 box-shadow: var(--shadow-md);
}
.btn-secondary {
 background: transparent;
 color: var(--secondary-color);
 border-color: var(--secondary-color);
}
.btn-secondary:hover {
 background: var(--secondary-color);
 color: white;
}
.card-button {
 display: inline-block;
 padding: 12px 24px;
 border: 2px solid var(--primary-color);
 border-radius: var(--radius-md);
 color: var(--primary-color);
 font-weight: 600;
 text-decoration: none;
 text-align: center;
 transition: var(--transition);
 align-self: flex-start;
 margin-top: auto;
}
.card-button:hover {
 background: var(--primary-color);
 color: white;
}

/* Cards */
.cards-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 24px;
 width: 100%;
}
.card {
 background: var(--bg-white);
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-md);
 transition: var(--transition);
 display: flex;
 flex-direction: column;
 overflow: hidden;
}
.card:hover {
 transform: translateY(-8px);
 box-shadow: var(--shadow-lg);
}
.card-image {
 width: 100%;
 height: 200px;
 object-fit: cover;
}
.card-body {
 padding: 24px;
 display: flex;
 flex-direction: column;
 flex-grow: 1;
}
.card-title {
 font-size: 1.25rem;
 margin-bottom: 12px;
 color: var(--secondary-color);
}
.card-text {
 color: var(--text-light);
 flex-grow: 1;
 margin-bottom: 24px;
}
.value-card {
 padding: 24px;
 text-align: center;
}
.value-card h3 {
 margin-bottom: 8px;
}

/* Stats section */
.stats-highlight {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 40px;
 align-items: center;
}
.highlight-list {
 list-style: none;
 padding: 0;
 display: flex;
 flex-direction: column;
 gap: 20px;
}
.highlight-list li {
 padding-left: 28px;
 position: relative;
 font-size: 1rem;
 line-height: 1.6;
}
.highlight-list li::before {
 content: '';
 position: absolute;
 left: 0;
 top: 0;
 color: var(--primary-color);
 font-weight: bold;
}
.stats-numbers {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
 gap: 20px;
 text-align: center;
}
.stat-number {
 font-size: 2.5rem;
 font-weight: 700;
 color: var(--primary-color);
}
.stat-caption {
 font-size: 0.9rem;
 color: var(--text-light);
}

/* Media Object */
.media-object {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 48px;
 align-items: center;
}
.media-object.reverse {
 grid-template-columns: 1fr 1fr;
}
.media-object.reverse .media-visual {
 order: -1;
}
.media-copy h3 {
 margin-bottom: 16px;
}
.media-copy p, .media-copy ul {
 margin-bottom: 24px;
}
.media-copy ul {
 list-style: none;
 padding: 0;
 display: flex;
 flex-direction: column;
 gap: 16px;
}
.media-copy ul li {
 position: relative;
 padding-left: 28px;
}
.media-copy ul li::before {
 content: '';
 position: absolute;
 left: 0;
 top: 7px;
 width: 10px;
 height: 10px;
 background-color: var(--primary-color);
 border-radius: 50%;
}
.media-visual img {
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-lg);
}

/* Timeline */
.timeline {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 32px;
 position: relative;
}
.timeline::before {
 content: '';
 position: absolute;
 top: 18px;
 left: 48px;
 right: 48px;
 height: 2px;
 background: var(--border-color);
 z-index: 0;
}
.timeline-step {
 position: relative;
 padding-top: 48px;
}
.timeline-step h3 {
 font-size: 1.2rem;
 margin-bottom: 8px;
 color: var(--secondary-color);
}
.timeline-step p {
 font-size: 0.95rem;
}
.timeline-step::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 width: 36px;
 height: 36px;
 border-radius: 50%;
 background: var(--bg-white);
 border: 2px solid var(--primary-color);
 z-index: 1;
}
.timeline-step::after {
 counter-increment: step;
 content: counter(step);
 position: absolute;
 top: 8px;
 left: 12px;
 color: var(--primary-color);
 font-weight: 700;
 z-index: 2;
}

/* Testimonials */
.testimonial-card {
 padding: 24px;
}
.testimonial-header {
 display: flex;
 align-items: center;
 gap: 16px;
 margin-bottom: 16px;
}
.avatar {
 width: 60px;
 height: 60px;
 border-radius: 50%;
 object-fit: cover;
}
.testimonial-header h4 {
 margin: 0;
 font-size: 1.1rem;
 color: var(--secondary-color);
}
.testimonial-header span {
 font-size: 0.85rem;
 color: var(--text-muted);
}
.testimonial-card p {
 font-style: italic;
 color: var(--text-light);
}

/* Team Section */
.team-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 30px;
}
.team-member-card {
 text-align: center;
 padding: 20px;
}
.team-photo {
 width: 140px;
 height: 140px;
 border-radius: 50%;
 object-fit: cover;
 margin: 0 auto 20px;
 border: 4px solid var(--bg-white);
 box-shadow: var(--shadow-md);
}
.team-member-card h4 {
 font-size: 1.25rem;
 margin-bottom: 4px;
 color: var(--secondary-color);
}
.team-member-card span {
 display: block;
 color: var(--primary-color);
 font-weight: 500;
 margin-bottom: 12px;
}
.team-member-card p {
 font-size: 0.95rem;
 color: var(--text-light);
}

/* Forms */
.form-card {
 background: white;
 padding: 40px;
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-lg);
 max-width: 800px;
 margin: 0 auto;
}
.form-grid {
 display: flex;
 flex-direction: column;
 gap: 20px;
}
.form-grid.two-columns {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 20px;
}
.form-group {
 display: flex;
 flex-direction: column;
}
.form-group label {
 font-weight: 600;
 margin-bottom: 8px;
 color: var(--text-dark);
}
.form-group input,
.form-group textarea {
 width: 100%;
 padding: 14px 18px;
 font-size: 1rem;
 font-family: var(--font-main);
 border: 1px solid var(--border-color);
 border-radius: var(--radius-md);
 transition: var(--transition);
 background: #f9fafb;
}
.form-group input:focus,
.form-group textarea:focus {
 outline: none;
 border-color: var(--primary-color);
 box-shadow: 0 0 0 3px rgba(202, 138, 4, 0.2);
 background: white;
}
textarea.form-control {
 resize: vertical;
 min-height: 120px;
}
.submit-button {
 width: 100%;
 margin-top: 12px;
}
.checkbox-group {
 flex-direction: row;
 align-items: center;
 gap: 12px;
}
.checkbox-group label { margin-bottom: 0; font-weight: 400; font-size: 0.9rem;}
.checkbox-group input { width: auto; }

/* Contact Page */
.contact-page-layout {
 display: grid;
 grid-template-columns: 2fr 1fr;
 gap: 60px;
}
.contact-info-container {
 padding: 30px;
 background: var(--bg-light);
 border-radius: var(--radius-lg);
}
.contact-info-container h3 {
 margin-bottom: 24px;
}
.contact-info-item {
 display: flex;
 align-items: flex-start;
 gap: 16px;
 margin-bottom: 24px;
}
.contact-info-item svg {
 flex-shrink: 0;
 width: 24px;
 height: 24px;
 color: var(--primary-color);
 margin-top: 3px;
}
.contact-info-item h4 {
 margin: 0 0 4px 0;
 color: var(--secondary-color);
}
.contact-info-item p {
 margin: 0;
 line-height: 1.5;
}
.map-container {
 width: 100%;
 height: 450px;
 border-radius: var(--radius-lg);
 overflow: hidden;
 box-shadow: var(--shadow-md);
 margin-top: 80px;
}
.map-container iframe {
 width: 100%;
 height: 100%;
 border: none;
}

/* FAQ Section */
.faq-container {
 max-width: 800px;
 margin: 0 auto;
 display: flex;
 flex-direction: column;
 gap: 16px;
}
.faq-item {
 border: 1px solid var(--border-color);
 border-radius: var(--radius-md);
 background: white;
}
.faq-item summary {
 padding: 20px;
 font-weight: 600;
 cursor: pointer;
 list-style: none; /* Hide default marker */
 position: relative;
 color: var(--secondary-color);
}
.faq-item summary::-webkit-details-marker {
 display: none; /* Hide default marker for Chrome */
}
.faq-item summary::after {
 content: '+';
 position: absolute;
 right: 20px;
 font-size: 1.5rem;
 font-weight: 400;
 transition: var(--transition);
}
.faq-item[open] summary::after {
 transform: rotate(45deg);
}
.faq-item p {
 padding: 0 20px 20px 20px;
 border-top: 1px solid var(--border-color);
 margin-top: 10px;
 padding-top: 20px;
}

/* Newsletter Section */
.newsletter-section {
 padding: 60px 0;
}
.newsletter-form {
 display: flex;
 gap: 12px;
 max-width: 500px;
 margin: 24px auto 0;
}
.newsletter-form input {
 flex: 1;
 padding: 14px 20px;
 border: 1px solid var(--border-color);
 border-radius: var(--radius-md);
 font-size: 1rem;
}
.newsletter-form button {
 flex-shrink: 0;
}

/* Footer */
.footer {
 background: var(--secondary-color);
 color: #e5e7eb;
 padding: 60px 0 30px;
 margin-top: 80px;
}
.footer-container {
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 20px;
}
.footer-grid {
 display: grid;
 grid-template-columns: 2fr 1fr 1fr 1.5fr;
 gap: 40px;
 margin-bottom: 40px;
}
.footer-brand .footer-logo {
 color: white;
 margin-bottom: 16px;
 display: block;
}
.footer-description {
 font-size: 0.9rem;
 line-height: 1.6;
 color: #9ca3af;
 margin-bottom: 20px;
}
.footer-heading {
 font-size: 1rem;
 font-weight: 600;
 color: white;
 margin-bottom: 20px;
 text-transform: uppercase;
 letter-spacing: 1px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a, .footer-contact-item a {
 color: #9ca3af;
 font-size: 0.9rem;
}
.footer-links a:hover, .footer-contact-item a:hover { color: white; }
.footer-contact-item {
 display: flex;
 gap: 12px;
 margin-bottom: 16px;
 font-size: 0.9rem;
 color: #9ca3af;
 align-items: flex-start;
}
.footer-contact-item svg {
 flex-shrink: 0;
 width: 20px;
 height: 20px;
 margin-top: 3px;
 color: var(--primary-color);
}
.footer-social {
 display: flex;
 gap: 12px;
 margin-top: 20px;
}
.footer-social a {
 width: 40px;
 height: 40px;
 border-radius: 50%;
 background: rgba(255, 255, 255, 0.1);
 display: flex;
 align-items: center;
 justify-content: center;
 color: white;
}
.footer-social a:hover {
 background: var(--primary-color);
 transform: translateY(-3px);
}
.footer-divider {
 height: 1px;
 background: rgba(255, 255, 255, 0.1);
 margin: 30px 0;
}
.footer-bottom {
 display: flex;
 justify-content: space-between;
 align-items: center;
 flex-wrap: wrap;
 gap: 16px;
}
.footer-copyright, .footer-legal-links a {
 font-size: 0.85rem;
 color: #6b7280;
}
.footer-legal-links { display: flex; gap: 24px; }
.footer-legal-links a:hover { color: white; }

/* Legal & Thank you pages */
.legal-page .section-inner, .thank-you-section .section-inner { max-width: 900px; }
.legal-content h2 { margin-top: 40px; margin-bottom: 20px; }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p, .legal-content ul { margin-bottom: 20px; }
.legal-content ul { padding-left: 20px; }
.thank-you-content {
 text-align: center;
 padding: 60px 24px;
 background: var(--bg-light);
 border-radius: var(--radius-lg);
}
.cookie-table {
 width: 100%;
 border-collapse: collapse;
 margin: 30px 0;
}
.cookie-table th, .cookie-table td {
 border: 1px solid var(--border-color);
 padding: 12px;
 text-align: left;
}
.cookie-table th {
 background-color: var(--bg-light);
}

/* Cookie Banner */
#cookie-banner {
 position: fixed;
 bottom: 20px;
 left: 20px;
 right: 20px;
 max-width: 600px;
 background: var(--secondary-color);
 color: white;
 padding: 20px;
 border-radius: var(--radius-md);
 box-shadow: var(--shadow-lg);
 display: none;
 align-items: center;
 justify-content: space-between;
 gap: 20px;
 z-index: 2000;
}
#cookie-banner p { margin: 0; font-size: 0.9rem; }
#cookie-banner a { color: var(--primary-color); text-decoration: underline; }
#cookie-banner div { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie, .btn-cookie-decline {
 padding: 8px 16px;
 border-radius: var(--radius-md);
 border: none;
 cursor: pointer;
 font-weight: 600;
}
.btn-cookie {
 background: var(--primary-color);
 color: white;
}
.btn-cookie-decline {
 background: transparent;
 color: white;
 border: 1px solid white;
}

/* Form validation */
.input-error {
 border-color: #dc2626 !important;
 box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1) !important;
}
.field-error {
 color: #dc2626;
 font-size: 0.85rem;
 margin-top: 4px;
 animation: fadeIn 0.3s ease;
}
.checkbox-group .field-error {
 display: block;
 width: 100%;
 margin-left: -20px;
 margin-top: 10px;
}
@keyframes fadeIn {
 from { opacity: 0; transform: translateY(-5px); }
 to { opacity: 1; transform: translateY(0); }
}
.submit-button[disabled] {
 opacity: 0.7;
 cursor: not-allowed;
}
.spinner {
 display: inline-block;
 width: 16px;
 height: 16px;
 border: 2px solid rgba(255,255,255,0.3);
 border-radius: 50%;
 border-top-color: #fff;
 animation: spin 0.8s linear infinite;
 margin-right: 8px;
 vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Responsive */
@media (max-width: 992px) {
 .cards-grid, .timeline { grid-template-columns: repeat(2, 1fr); }
 .hero-inner, .media-object, .media-object.reverse { grid-template-columns: 1fr; text-align: center; }
 .media-object .media-visual { margin-top: 40px; }
 .media-object.reverse .media-visual { order: 0; }
 .hero-copy p { margin-left: auto; margin-right: auto; }
 .hero-actions, .tag-pills { justify-content: center; }
 .stats-highlight { grid-template-columns: 1fr; }
 .highlight-list { margin-bottom: 40px; text-align: left; }
 .footer-grid { grid-template-columns: repeat(2, 1fr); }
 .contact-page-layout { grid-template-columns: 1fr; }
 .contact-info-container { margin-top: 40px; }
}

@media (max-width: 768px) {
 .nav-toggle { display: block; }
 .nav-links {
 position: fixed;
 top: 0;
 right: -100%;
 width: 70%;
 max-width: 300px;
 height: 100%;
 background: white;
 flex-direction: column;
 padding: 100px 40px 40px;
 gap: 24px;
 box-shadow: var(--shadow-lg);
 transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
 align-items: flex-start;
 }
 .nav-links.active {
 right: 0;
 }
 .page-wrapper { padding-top: 70px; }
 h1 { font-size: 2rem; }
 h2 { font-size: 1.75rem; }
 .form-grid.two-columns { grid-template-columns: 1fr; }
 #cookie-banner {
 flex-direction: column;
 text-align: center;
 bottom: 10px; left: 10px; right: 10px;
 }
}

@media (max-width: 576px) {
 .cards-grid, .timeline, .team-grid { grid-template-columns: 1fr; }
 .footer-grid { grid-template-columns: 1fr; text-align: center; }
 .footer-brand, .footer-social {
 margin-left: auto;
 margin-right: auto;
 }
 .footer-social { justify-content: center; }
 .footer-bottom { flex-direction: column; }
 .map-container { height: 350px; }
 .form-card { padding: 24px; }
}