:root {
 --primary-color: #e8507b;
 --secondary-color: #d6bcfa;
 --bg-light: #fdf2f8;
 --bg-white: #ffffff;
 --text-dark: #333333;
 --text-light: #666666;
 --border-color: #e5e7eb;
 --radius-md: 8px;
 --radius-lg: 16px;
 --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
 --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.07);
 --transition: all 0.3s ease-in-out;
 --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

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

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

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

a:hover {
 text-decoration: underline;
}

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

.container {
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 20px;
}

/* 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);
 box-shadow: var(--shadow-sm);
 transition: var(--transition);
}

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

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

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

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

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

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

.nav-links a:hover::after,
.nav-links a.active::after {
 width: 100%;
}
.nav-links a:hover {
 text-decoration: none;
 color: var(--primary-color);
}

.nav-cta {
 display: block;
}

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

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

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

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

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

.section-label {
 display: inline-block;
 padding: 6px 16px;
 background-color: var(--secondary-color);
 color: var(--text-dark);
 border-radius: 20px;
 font-size: 0.9rem;
 font-weight: 600;
 margin-bottom: 16px;
}

.section-title {
 font-size: clamp(2rem, 5vw, 2.5rem);
 font-weight: 700;
 margin-bottom: 16px;
}

.section-subtitle, .page-subtitle {
 font-size: 1.1rem;
 color: var(--text-light);
}

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

.page-title {
 font-size: clamp(2.5rem, 6vw, 3.5rem);
 font-weight: 700;
 margin-bottom: 16px;
}

/* Buttons */
.btn {
 display: inline-flex;
 padding: 12px 24px;
 border-radius: var(--radius-md);
 font-weight: 600;
 cursor: pointer;
 transition: var(--transition);
 border: 1px solid transparent;
 text-decoration: none;
 text-align: center;
}

.btn-primary {
 background-color: var(--primary-color);
 color: #fff;
}
.btn-primary:hover {
 background-color: #d13a66;
 color: #fff;
 transform: translateY(-2px);
 box-shadow: var(--shadow-md);
 text-decoration: none;
}
.btn-secondary {
 background-color: var(--bg-white);
 color: var(--primary-color);
 border-color: var(--primary-color);
}
.btn-secondary:hover {
 background-color: var(--primary-color);
 color: #fff;
 transform: translateY(-2px);
 box-shadow: var(--shadow-sm);
 text-decoration: none;
}
.btn-lg {
 padding: 16px 32px;
 font-size: 1.1rem;
}

/* Hero Section */
.hero {
 min-height: 80vh;
 position: relative;
 display: flex;
 align-items: center;
 justify-content: center;
 background-size: cover;
 background-position: center;
 color: #fff;
 text-align: center;
}

.hero::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: rgba(0, 0, 0, 0.5);
 z-index: 1;
}

.hero-content {
 position: relative;
 z-index: 2;
}

.hero-title {
 font-size: clamp(2.5rem, 6vw, 4rem);
 font-weight: 700;
 line-height: 1.2;
 margin-bottom: 20px;
}

.hero-subtitle {
 font-size: 1.25rem;
 max-width: 600px;
 margin: 0 auto 30px;
}

/* Grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* Cards */
.card {
 background-color: var(--bg-white);
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-sm);
 transition: var(--transition);
 overflow: hidden;
}
.card:hover {
 transform: translateY(-5px);
 box-shadow: var(--shadow-md);
}

.card-body {
 padding: 24px;
}

.card-title {
 font-size: 1.25rem;
 margin-bottom: 12px;
}

.card-text {
 color: var(--text-light);
}

.service-card .card-image {
 width: 100%;
 height: 200px;
 object-fit: cover;
}
.feature-item {
 background: var(--bg-white);
 padding: 24px;
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-sm);
 transition: var(--transition);
}
.feature-item:hover {
 transform: translateY(-5px);
 box-shadow: var(--shadow-md);
}
.feature-item h3 {
 margin-bottom: 10px;
}
.feature-item p {
 color: var(--text-light);
}

/* Media Object */
.media-object {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 40px;
 align-items: center;
}
.media-visual .section-image {
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-md);
 max-height: 400px;
 width: 100%;
 object-fit: cover;
}
.media-copy ul {
 list-style: none;
 padding: 0;
 margin: 20px 0;
}
.media-copy ul li {
 padding-left: 25px;
 position: relative;
 margin-bottom: 10px;
}
.media-copy ul li::before {
 content: '';
 color: var(--primary-color);
 position: absolute;
 left: 0;
 font-weight: 700;
}
.media-copy .btn {
 margin-top: 20px;
}
/* Testimonials */
.testimonial-card {
 background: var(--bg-white);
 padding: 30px;
 border-radius: var(--radius-lg);
 text-align: center;
 box-shadow: var(--shadow-sm);
}
.testimonial-avatar {
 width: 80px;
 height: 80px;
 border-radius: 50%;
 margin: 0 auto 20px;
 object-fit: cover;
 border: 3px solid var(--secondary-color);
}
.testimonial-card blockquote {
 margin-bottom: 20px;
 font-style: italic;
 color: var(--text-light);
}
.testimonial-card cite {
 font-weight: 600;
}

/* Timeline */
.timeline {
 position: relative;
 max-width: 800px;
 margin: 0 auto;
}
.timeline::after {
 content: '';
 position: absolute;
 top: 0;
 bottom: 0;
 left: 50%;
 width: 2px;
 background-color: var(--secondary-color);
 transform: translateX(-50%);
}
.timeline-step {
 padding: 10px 40px;
 position: relative;
 width: 50%;
 text-align: right;
 margin-bottom: 40px;
}
.timeline-step:nth-child(odd) {
 left: 0;
}
.timeline-step:nth-child(even) {
 left: 50%;
 text-align: left;
}
.timeline-step::after {
 content: '';
 position: absolute;
 width: 20px;
 height: 20px;
 top: 15px;
 background-color: white;
 border: 4px solid var(--primary-color);
 border-radius: 50%;
 z-index: 1;
}
.timeline-step:nth-child(odd)::after {
 right: -10px;
}
.timeline-step:nth-child(even)::after {
 left: -10px;
}
.timeline-step h3 {
 margin-bottom: 10px;
}
/* CTA Section */
.cta-section {
 background: var(--bg-light);
 padding: 80px 0;
}

/* Contact Page */
.contact-page-layout {
 display: grid;
 grid-template-columns: 2fr 1.5fr;
 gap: 50px;
}
.form-group {
 margin-bottom: 20px;
}
.form-group label {
 display: block;
 margin-bottom: 8px;
 font-weight: 500;
}
.form-group input,
.form-group textarea {
 width: 100%;
 padding: 12px;
 border: 1px solid var(--border-color);
 border-radius: var(--radius-md);
 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(232, 80, 123, 0.2);
}
.checkbox-group {
 display: flex;
 align-items: center;
 gap: 10px;
}
.checkbox-group input {
 width: auto;
}
.contact-details .contact-item {
 margin-bottom: 20px;
}
.contact-details h4 {
 margin-bottom: 8px;
 font-weight: 600;
}
.contact-details p {
 color: var(--text-light);
 display: flex;
 align-items: flex-start;
 gap: 8px;
}
.contact-details p span {
 color: var(--primary-color);
}
.map-container {
 border-radius: var(--radius-lg);
 overflow: hidden;
 box-shadow: var(--shadow-md);
 margin-top: 40px;
}

/* Team Section */
.team-card {
 text-align: center;
}
.team-card img {
 width: 150px;
 height: 150px;
 border-radius: 50%;
 object-fit: cover;
 margin: 0 auto 20px;
 border: 4px solid var(--secondary-color);
}
.team-card h3 {
 margin-bottom: 5px;
}
.team-card p {
 color: var(--text-light);
}

/* FAQ Page */
.faqs-container {
 max-width: 800px;
}
.faq-item {
 border-bottom: 1px solid var(--border-color);
 padding: 20px 0;
}
.faq-question {
 cursor: pointer;
 position: relative;
 padding-right: 30px;
}
.faq-question::after {
 content: '+';
 position: absolute;
 right: 0;
 font-size: 1.5rem;
 color: var(--primary-color);
 transition: var(--transition);
}
.faq-item.active .faq-question::after {
 transform: rotate(45deg);
}
.faq-answer {
 max-height: 0;
 overflow: hidden;
 transition: max-height 0.3s ease-out;
}
.faq-answer p {
 padding-top: 15px;
 color: var(--text-light);
}

/* Legal Pages */
.legal-page {
 padding: 120px 0 80px;
}
.legal-page h1 { margin-bottom: 20px; }
.legal-page h3 { margin: 30px 0 10px; }
.legal-page p, .legal-page ul { margin-bottom: 15px; color: var(--text-light); }
.legal-page ul { padding-left: 20px;}
.cookie-table {
 width: 100%;
 border-collapse: collapse;
 margin: 20px 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);
}

/* Footer */
.footer {
 background-color: #333;
 color: #f0f0f0;
 padding: 60px 0 30px;
 margin-top: 50px;
}
.footer-grid {
 display: grid;
 grid-template-columns: 2fr repeat(3, 1fr);
 gap: 40px;
 margin-bottom: 40px;
}
.footer-logo {
 font-size: 1.5rem;
 font-weight: 700;
 color: #fff;
 margin-bottom: 15px;
 display: block;
}
.footer-description {
 color: #ccc;
 margin-bottom: 20px;
 max-width: 300px;
}
.footer-heading {
 font-size: 1.1rem;
 font-weight: 600;
 color: #fff;
 margin-bottom: 20px;
}
.footer-links {
 list-style: none;
}
.footer-links li {
 margin-bottom: 10px;
}
.footer-links a, .footer-contact-item a {
 color: #ccc;
}
.footer-links a:hover, .footer-contact-item a:hover {
 color: #fff;
 text-decoration: underline;
}
.footer-contact-item {
 color: #ccc;
 margin-bottom: 10px;
 display: flex;
 gap: 10px;
 align-items: flex-start;
}
.footer-bottom {
 border-top: 1px solid #555;
 padding-top: 30px;
 display: flex;
 justify-content: space-between;
 align-items: center;
 color: #aaa;
}
.footer-legal-link {
 color: #aaa;
 margin-left: 20px;
}

/* Cookie Banner */
#cookie-banner {
 position: fixed;
 bottom: 0;
 left: 0;
 right: 0;
 background: #252525;
 color: #fff;
 padding: 20px;
 display: none;
 align-items: center;
 justify-content: space-between;
 gap: 20px;
 z-index: 2000;
}
#cookie-banner p { margin: 0; }
#cookie-banner a { color: var(--secondary-color); }
#cookie-banner div { display: flex; gap: 10px; }

/* 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;
}
.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;
}

/* Responsive */
@media (max-width: 992px) {
 .grid-3 { grid-template-columns: 1fr 1fr; }
 .grid-2 { grid-template-columns: 1fr; }
 .media-object { grid-template-columns: 1fr; }
 .media-object .media-visual { order: -1; margin-bottom: 30px; }
 .contact-page-layout { grid-template-columns: 1fr; }
 .footer-grid { grid-template-columns: 1fr 1fr; }
 .timeline::after { left: 30px; }
 .timeline-step { width: 100%; padding-left: 70px; padding-right: 0; text-align: left; }
 .timeline-step:nth-child(even){ left: 0; }
 .timeline-step::after { left: 20px; }
 .timeline-step:nth-child(odd):after { left: 20px; }
}

@media (max-width: 768px) {
 .nav-toggle { display: block; z-index: 1001; }
 .nav-links {
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: #fff;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 gap: 30px;
 transform: translateX(100%);
 transition: transform 0.3s ease-in-out;
 }
 .nav-links.active { transform: translateX(0); }
 .nav-links a { font-size: 1.5rem; }
 .nav-cta { display: none; }
 .grid-3 { grid-template-columns: 1fr; }
 .footer-grid { grid-template-columns: 1fr; }
 .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
 #cookie-banner { flex-direction: column; }
}

@media (max-width: 576px) {
 .hero-title { font-size: 2rem; }
 .hero-subtitle { font-size: 1rem; }
}