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

:root {
 --primary-color: #0284c7; /* sky */
 --primary-dark: #0369a1; /* Darker sky */
 --secondary-color: #7dd3fc; /* accent */
 --text-dark: #1f2937;
 --text-light: #4b5563;
 --text-muted: #6b7280;
 --bg-light: #f0f9ff; /* Light blue tint */
 --bg-white: #ffffff;
 --border-color: #e5e7eb;
 --footer-bg: #082f49; /* Dark blue for footer */
 --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
 --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
 --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
 --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, Helvetica, Arial, sans-serif;
}

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

html {
 scroll-behavior: smooth;
 font-size: 16px;
}

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

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

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; font-weight: 600; }

p {
 margin-bottom: 1rem;
}

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

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

.container {
 max-width: 1200px;
 margin-left: auto;
 margin-right: auto;
 padding-left: 1.5rem;
 padding-right: 1.5rem;
}

.section {
 padding: 80px 0;
}

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

.section-header {
 text-align: center;
 max-width: 700px;
 margin: 0 auto 50px;
}

.section-subtitle {
 font-size: 1.125rem;
 color: var(--text-muted);
}

.text-center { text-align: center; }
.no-padding-top { padding-top: 0; }

.grid-3 {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 30px;
}

@media (max-width: 992px) {
 .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
 .grid-3 { grid-template-columns: 1fr; }
}

/* Header */
.header {
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 z-index: 1000;
 background-color: rgba(255, 255, 255, 0.85);
 backdrop-filter: blur(10px);
 border-bottom: 1px solid var(--border-color);
 transition: background-color 0.3s, box-shadow 0.3s;
}

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

.nav {
 height: 70px;
 display: flex;
 justify-content: space-between;
 align-items: center;
}

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

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

.nav-links a {
 color: var(--text-light);
 font-weight: 500;
 padding: 5px 0;
 position: relative;
}

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

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

.nav-links a:hover::after,
.nav-links a.active::after {
 transform: scaleX(1);
}

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

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

/* Buttons */
.btn {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 padding: 12px 24px;
 border-radius: var(--radius-md);
 font-weight: 600;
 font-size: 1rem;
 transition: var(--transition);
 border: 2px solid transparent;
 cursor: pointer;
}

.btn-primary {
 background-color: var(--primary-color);
 color: var(--bg-white);
 box-shadow: 0 4px 14px rgba(2, 132, 199, 0.25);
}

.btn-primary:hover {
 background-color: var(--primary-dark);
 transform: translateY(-2px);
 box-shadow: 0 6px 16px rgba(2, 132, 199, 0.3);
}

.btn-secondary {
 background-color: transparent;
 color: var(--primary-color);
 border-color: var(--primary-color);
}

.btn-secondary:hover {
 background-color: var(--primary-color);
 color: var(--bg-white);
}

.btn-lg {
 padding: 16px 32px;
 font-size: 1.125rem;
}

.btn-full { width: 100%; }

/* Hero */
.hero {
 padding: 120px 0 80px;
 background-color: var(--bg-light);
 overflow: hidden;
}
.hero-container {
 display: grid;
 grid-template-columns: 1fr 1fr;
 align-items: center;
 gap: 40px;
}
.hero-content h1 {
 color: var(--text-dark);
}
.hero-subtitle {
 font-size: 1.25rem;
 color: var(--text-muted);
 margin-bottom: 2rem;
}
.hero-actions {
 display: flex;
 gap: 1rem;
 margin-bottom: 2rem;
}
.hero-trust {
 display: flex;
 gap: 1.5rem;
 color: var(--text-muted);
 font-size: 0.9rem;
}
.hero-visual img {
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-lg);
 width: 100%;
}

/* Badge */
.badge {
 display: inline-block;
 padding: 6px 16px;
 background-color: var(--secondary-color);
 color: var(--primary-dark);
 border-radius: 999px;
 font-weight: 600;
 font-size: 0.875rem;
 margin-bottom: 1rem;
}

.page-header-section {
 background-color: var(--bg-light);
 padding: 120px 0 80px;
}

/* Trusted By Section */
.trusted-by-section {
 background-color: #fff;
 padding: 40px 0;
 border-bottom: 1px solid var(--border-color);
}
.trusted-by-title {
 text-align: center;
 font-size: 1rem;
 font-weight: 500;
 color: var(--text-muted);
 margin-bottom: 2rem;
}
.logos-carousel {
 display: flex;
 justify-content: space-around;
 align-items: center;
 flex-wrap: wrap;
 gap: 2rem;
}
.partner-logo {
 height: 35px;
 width: auto;
 max-width: 140px;
 object-fit: contain;
 filter: grayscale(100%);
 opacity: 0.6;
 transition: var(--transition);
}
.partner-logo:hover {
 filter: grayscale(0);
 opacity: 1;
}

/* Features */
.feature-card {
 background-color: var(--bg-white);
 padding: 30px;
 border-radius: var(--radius-lg);
 text-align: center;
 box-shadow: var(--shadow-md);
 transition: var(--transition);
}
.feature-card:hover {
 transform: translateY(-5px);
 box-shadow: var(--shadow-lg);
}
.feature-icon {
 display: inline-flex;
 justify-content: center;
 align-items: center;
 width: 60px;
 height: 60px;
 border-radius: 50%;
 background-color: var(--bg-light);
 color: var(--primary-color);
 margin-bottom: 1.5rem;
}
.feature-icon svg {
 width: 30px;
 height: 30px;
}
.feature-card h3 {
 margin-bottom: 0.5rem;
}
.feature-card p {
 color: var(--text-muted);
}

/* Media Object */
.media-object {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 50px;
 align-items: center;
}
.media-object.reverse .media-copy { order: 2; }
.media-visual img {
 width: 100%;
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-lg);
}
.styled-list {
 list-style: none;
 padding-left: 0;
 margin: 2rem 0;
}
.styled-list li {
 position: relative;
 padding-left: 30px;
 margin-bottom: 1rem;
}
.styled-list li::before {
 content: '';
 position: absolute;
 left: 0;
 top: 0;
 color: var(--primary-color);
 font-weight: 700;
 font-size: 1.2rem;
}

/* Card */
.card {
 background-color: var(--bg-white);
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-md);
 overflow: hidden;
 display: flex;
 flex-direction: column;
 transition: var(--transition);
}
.card:hover {
 transform: translateY(-5px);
 box-shadow: var(--shadow-lg);
}
.card-image {
 width: 100%;
 height: 200px;
 object-fit: cover;
}
.card-body {
 padding: 24px;
 flex-grow: 1;
 display: flex;
 flex-direction: column;
}
.card-title {
 margin-bottom: 0.5rem;
}
.card-text {
 color: var(--text-muted);
 flex-grow: 1;
}
.card-meta {
 font-size: 0.9rem;
 color: var(--text-muted);
 margin-bottom: 1rem;
}
.card-button {
 display: block;
 padding: 12px 24px;
 background: var(--bg-light);
 text-align: center;
 font-weight: 600;
 color: var(--primary-color);
}
.card-button:hover {
 background: var(--primary-color);
 color: var(--bg-white);
}

/* Testimonial */
.testimonial-section {
 background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
 color: white;
}
.testimonial-card {
 background: rgba(255, 255, 255, 0.1);
 padding: 40px;
 border-radius: var(--radius-lg);
 max-width: 800px;
 margin: 0 auto;
 text-align: center;
}
.testimonial-avatar {
 width: 80px;
 height: 80px;
 border-radius: 50%;
 margin: 0 auto 20px;
 border: 3px solid var(--bg-white);
}
.testimonial-card blockquote {
 font-size: 1.25rem;
 font-style: italic;
 border: none;
 margin-bottom: 1rem;
}
.testimonial-card cite {
 font-style: normal;
}
.testimonial-card cite span {
 display: block;
 opacity: 0.8;
}

/* FAQ */
.faq-accordion {
 max-width: 800px;
 margin: 0 auto;
}
.faq-item {
 border-bottom: 1px solid var(--border-color);
}
.faq-question {
 width: 100%;
 text-align: left;
 background: none;
 border: none;
 padding: 20px 0;
 font-size: 1.125rem;
 font-weight: 600;
 cursor: pointer;
 display: flex;
 justify-content: space-between;
 align-items: center;
 color: var(--text-dark);
}
.faq-icon {
 width: 20px;
 height: 20px;
 transition: transform 0.3s;
}
.faq-answer {
 max-height: 0;
 overflow: hidden;
 transition: max-height 0.3s ease-out;
}
.faq-answer p {
 padding-bottom: 20px;
 color: var(--text-muted);
}
.faq-item.active .faq-icon {
 transform: rotate(45deg);
}

/* CTA Section */
.cta-section {
 background-color: var(--bg-light);
}

/* Footer */
.footer {
 background-color: var(--footer-bg);
 color: #a0aec0;
 padding: 60px 0 20px;
}
.footer-grid {
 display: grid;
 grid-template-columns: 2fr repeat(3, 1fr);
 gap: 40px;
 padding-bottom: 40px;
}
.footer-logo {
 color: var(--bg-white);
 font-size: 1.5rem;
 font-weight: 700;
 margin-bottom: 1rem;
 display: block;
}
.footer-description {
 font-size: 0.9rem;
 line-height: 1.7;
 margin-bottom: 1.5rem;
}
.footer-social {
 display: flex;
 gap: 1rem;
}
.footer-social a {
 color: #a0aec0;
 display: inline-block;
}
.footer-social a:hover {
 color: var(--secondary-color);
}
.footer-social svg {
 width: 24px;
 height: 24px;
}
.footer-heading {
 color: var(--bg-white);
 font-size: 1rem;
 font-weight: 600;
 margin-bottom: 1.5rem;
 text-transform: uppercase;
 letter-spacing: 0.5px;
}
.footer-links {
 list-style: none;
}
.footer-links li:not(:last-child) {
 margin-bottom: 1rem;
}
.footer-links a {
 color: #a0aec0;
}
.footer-links a:hover {
 color: var(--bg-white);
 padding-left: 5px;
}
.footer-contact-info p {
 display: flex;
 align-items: flex-start;
 gap: 10px;
 margin-bottom: 1rem;
}
.footer-contact-info svg {
 flex-shrink: 0;
 width: 20px;
 height: 20px;
 color: var(--secondary-color);
 margin-top: 3px;
}
.footer-contact-info a {
 color: #a0aec0;
}
.footer-contact-info a:hover {
 color: var(--bg-white);
}
.footer-hours {
 font-size: 0.9rem;
 line-height: 1.6;
}
.footer-bottom {
 border-top: 1px solid rgba(255, 255, 255, 0.1);
 padding-top: 20px;
 display: flex;
 justify-content: space-between;
 align-items: center;
 font-size: 0.875rem;
}
.footer-legal-links {
 display: flex;
 gap: 1.5rem;
}
.footer-legal-links a {
 color: #a0aec0;
}
.footer-legal-links a:hover {
 color: var(--bg-white);
}

/* Cookie Banner */
#cookie-banner {
 position: fixed;
 bottom: 0;
 left: 0;
 right: 0;
 background-color: var(--footer-bg);
 color: var(--bg-white);
 padding: 1rem;
 z-index: 1001;
 display: none;
}
.cookie-container {
 display: flex;
 justify-content: space-between;
 align-items: center;
}
#cookie-banner p { margin: 0; }
#cookie-banner a { color: var(--secondary-color); }
.cookie-buttons { display: flex; gap: 1rem; }

/* Responsive */
@media (max-width: 992px) {
 .hero-container { grid-template-columns: 1fr; text-align: center; }
 .hero-trust, .hero-actions { justify-content: center; }
 .hero-visual { display: none; }
 .media-object { grid-template-columns: 1fr; }
 .media-object.reverse .media-copy { order: 1; }
 .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
 h1 { font-size: 2.2rem; }
 h2 { font-size: 1.8rem; }
 .section { padding: 60px 0; }
 .nav-toggle { display: block; }
 .nav-links {
 position: fixed;
 top: 0;
 right: -100%;
 width: 80%;
 height: 100vh;
 background-color: var(--bg-white);
 flex-direction: column;
 padding: 80px 30px 30px;
 gap: 20px;
 box-shadow: -5px 0 15px rgba(0,0,0,0.1);
 transition: right 0.4s ease-in-out;
 }
 .nav-links.active {
 right: 0;
 }
 .nav-actions { display: none; }
 .footer-grid { grid-template-columns: 1fr; text-align: center; }
 .footer-social, .footer-legal-links { justify-content: center; }
 .footer-bottom { flex-direction: column; gap: 1rem; }
 .cookie-container { flex-direction: column; gap: 1rem; text-align: center; }
}

/* About Page */
.value-card {
 background: var(--bg-white);
 padding: 30px;
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-md);
 text-align: center;
}
.team-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 30px;
}
.team-member {
 text-align: center;
}
.team-photo {
 width: 150px;
 height: 150px;
 border-radius: 50%;
 object-fit: cover;
 margin: 0 auto 1.5rem;
 box-shadow: var(--shadow-lg);
}
.team-role {
 color: var(--primary-color);
 font-weight: 600;
 margin-bottom: 0.5rem;
}
.team-bio {
 font-size: 0.9rem;
 color: var(--text-muted);
}

/* Contact Page */
.contact-wrapper {
 display: grid;
 grid-template-columns: 2fr 1fr;
 gap: 50px;
 background: var(--bg-white);
 padding: 50px;
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-lg);
}
.form-group {
 margin-bottom: 1.5rem;
}
.form-group label {
 display: block;
 margin-bottom: 0.5rem;
 font-weight: 500;
 color: var(--text-dark);
}
.form-group input, .form-group textarea {
 width: 100%;
 padding: 12px;
 border: 1px solid var(--border-color);
 border-radius: var(--radius-md);
 font-family: var(--font-main);
 font-size: 1rem;
 transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus {
 outline: none;
 border-color: var(--primary-color);
 box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.1);
}
.checkbox-group {
 display: flex;
 align-items: center;
}
.checkbox-group input {
 width: auto;
 margin-right: 10px;
}
.checkbox-group label {
 margin: 0;
 font-size: 0.9rem;
}
.contact-info-item {
 display: flex;
 align-items: flex-start;
 gap: 15px;
 margin-bottom: 1.5rem;
}
.contact-info-item svg {
 width: 24px;
 height: 24px;
 color: var(--primary-color);
 flex-shrink: 0;
 margin-top: 3px;
}
.map-container {
 height: 450px;
 border-radius: var(--radius-lg);
 overflow: hidden;
 margin-top: 50px;
}

@media(max-width: 992px) {
 .contact-wrapper {
 grid-template-columns: 1fr;
 }
}

/* Legal Pages */
.legal-page .container {
 max-width: 800px;
}
.legal-page {
 padding: 120px 0 80px;
}
.legal-page h1 { margin-bottom: 0.5rem; }
.legal-page > .container > p { margin-bottom: 3rem; color: var(--text-muted); }
.legal-page section {
 margin-bottom: 2rem;
}
.legal-page h2 {
 font-size: 1.5rem;
 border-bottom: 2px solid var(--border-color);
 padding-bottom: 0.5rem;
 margin-bottom: 1.5rem;
}
.legal-page ul {
 list-style-position: inside;
 padding-left: 1rem;
}
.legal-page li {
 margin-bottom: 0.5rem;
}
.cookie-table table {
 width: 100%;
 border-collapse: collapse;
 margin-top: 1rem;
}
.cookie-table th, .cookie-table td {
 padding: 12px;
 text-align: left;
 border-bottom: 1px solid var(--border-color);
}
.cookie-table th {
 background-color: var(--bg-light);
}

/* 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;
}
.form-success {
 animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
 from { opacity: 0; transform: translateY(-10px); }
 to { opacity: 1; transform: translateY(0); }
}
.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); }
}
button[disabled] {
 opacity: 0.7;
 cursor: not-allowed;
}