:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #64748b;
    --accent-color: #0ea5e9;
    --success-color: #10b981;
    --text-dark: #1e293b;
    --text-medium: #475569;
    --text-light: #94a3b8;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

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

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

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

.main-nav {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-medium);
    font-weight: 500;
    transition: var(--transition);
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
}

.hero-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 20px;
}

.hero-overlay {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-image {
    flex: 1;
    max-width: 500px;
}

.hero-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
}

.intro-statement {
    background-color: var(--bg-light);
    padding: 80px 20px;
    text-align: center;
}

.intro-statement h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.intro-statement p {
    font-size: 1.125rem;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.services-cards {
    padding: 100px 20px;
}

.services-cards h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 700;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 3rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.card-icon img {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.service-card p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.card-price {
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
}

.price-label {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-right: 0.5rem;
}

.price-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-period {
    font-size: 0.875rem;
    color: var(--text-medium);
}

.btn-select {
    width: 100%;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-select:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: var(--transition);
}

.cta-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-primary.large {
    padding: 20px 50px;
    font-size: 1.25rem;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: var(--transition);
}

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

.why-us {
    background-color: var(--bg-white);
    padding: 100px 20px;
}

.why-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.why-text {
    flex: 1;
}

.why-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.why-text p {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.why-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-medium);
}

.testimonials {
    background-color: var(--bg-light);
    padding: 100px 20px;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 700;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-medium);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.875rem;
    color: var(--text-light);
}

.process-section {
    padding: 100px 20px;
    background-color: var(--bg-white);
}

.process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 700;
}

.process-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.process-card {
    flex: 1 1 calc(25% - 23px);
    min-width: 220px;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.process-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 50px;
    margin-bottom: 1rem;
}

.process-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.process-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.order-section {
    padding: 100px 20px;
    background-color: var(--bg-light);
}

.order-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 700;
}

.service-form {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 0.5rem;
    margin-top: 4px;
}

.btn-submit {
    width: 100%;
    padding: 16px 24px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.main-footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 20px 20px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-col p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: var(--text-light);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.875rem;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-cta a {
    display: block;
    padding: 16px 32px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}

.sticky-cta a:hover {
    background-color: var(--primary-dark);
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: var(--accent-color);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-accept {
    background-color: var(--success-color);
    color: white;
}

.btn-accept:hover {
    background-color: #059669;
}

.btn-reject {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-hero p {
    font-size: 1.25rem;
    opacity: 0.95;
}

.services-detail {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.service-detail-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.service-detail-card.featured-service {
    border: 2px solid var(--primary-color);
    position: relative;
}

.featured-label {
    position: absolute;
    top: -12px;
    left: 3rem;
    background-color: var(--primary-color);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.service-icon-large {
    width: 80px;
    height: 80px;
}

.service-detail-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.price-tag {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.service-description h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.service-description ul {
    margin: 1rem 0 2rem 1.5rem;
    color: var(--text-medium);
}

.service-description li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.service-note {
    background-color: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.packages-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.packages-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.section-intro {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

.packages-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.package-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.package-card.featured {
    border-color: var(--primary-color);
    background-color: var(--bg-white);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.package-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.package-price {
    margin-bottom: 2rem;
}

.old-price {
    display: block;
    color: var(--text-light);
    text-decoration: line-through;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.new-price {
    display: block;
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 800;
}

.package-includes {
    text-align: left;
    list-style: none;
    margin-bottom: 2rem;
}

.package-includes li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-medium);
}

.package-includes li:last-child {
    border-bottom: none;
}

.package-includes li::before {
    content: "✓";
    color: var(--success-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

.about-intro {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.about-content-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.about-text p {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    max-width: 500px;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.values-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 700;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.value-card p {
    color: var(--text-medium);
    line-height: 1.8;
}

.team-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 700;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.team-member {
    flex: 1 1 calc(25% - 23px);
    min-width: 240px;
    text-align: center;
}

.member-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--border-color);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.member-role {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.team-member p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

.stats-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.stats-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 700;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    flex: 1 1 calc(25% - 23px);
    min-width: 200px;
    background-color: var(--bg-white);
    padding: 2.5rem 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.approach-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.approach-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 700;
}

.approach-content {
    max-width: 900px;
    margin: 0 auto;
}

.approach-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-color);
}

.approach-item:last-child {
    border-bottom: none;
}

.approach-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.3;
    flex-shrink: 0;
}

.approach-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.approach-text p {
    color: var(--text-medium);
    line-height: 1.8;
}

.contact-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-weight: 700;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 700;
}

.contact-item p {
    color: var(--text-medium);
    line-height: 1.8;
}

.contact-item a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-note {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.contact-form-wrapper {
    flex: 1;
}

.contact-form-wrapper h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.form-intro {
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.contact-form {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: var(--border-radius);
}

.faq-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 700;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.faq-item p {
    color: var(--text-medium);
    line-height: 1.8;
}

.thanks-section {
    padding: 100px 20px;
    background-color: var(--bg-light);
    min-height: 60vh;
}

.thanks-content {
    text-align: center;
    background-color: var(--bg-white);
    padding: 4rem 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.thanks-icon {
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.service-info {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    font-weight: 600;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.next-steps {
    text-align: left;
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.next-steps h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
    text-align: center;
}

.steps-list {
    margin-left: 1.5rem;
}

.steps-list li {
    margin-bottom: 1rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 3rem 0;
}

.btn-primary {
    padding: 16px 32px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.contact-reminder {
    margin-top: 2rem;
    color: var(--text-medium);
}

.legal-page {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.last-updated {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.legal-content {
    color: var(--text-medium);
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin: 2.5rem 0 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.legal-content ul,
.legal-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.legal-content li {
    margin-bottom: 0.75rem;
}

.legal-content p {
    margin-bottom: 1.5rem;
}

.legal-content a {
    color: var(--primary-color);
    font-weight: 600;
}

.info-box {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--primary-color);
}

.info-box p {
    margin: 0;
}

.cookie-table {
    margin: 1.5rem 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
}

.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);
    font-weight: 700;
    color: var(--text-dark);
}

.cookie-table td {
    color: var(--text-medium);
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-overlay,
    .why-content,
    .about-content-split,
    .contact-grid {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .service-card,
    .testimonial-card,
    .package-card,
    .value-card,
    .faq-item {
        flex: 1 1 100%;
    }

    .process-card,
    .team-member,
    .stat-item {
        flex: 1 1 calc(50% - 15px);
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-cta a {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .thanks-actions {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .hero-content h1,
    .page-hero h1 {
        font-size: 1.75rem;
    }

    .intro-statement h2,
    .services-cards h2,
    .testimonials h2,
    .process-section h2,
    .cta-section h2,
    .packages-section h2,
    .values-section h2,
    .team-section h2,
    .stats-section h2,
    .approach-section h2,
    .faq-section h2 {
        font-size: 1.75rem;
    }

    .service-form,
    .contact-form {
        padding: 1.5rem;
    }

    .process-card,
    .team-member,
    .stat-item {
        flex: 1 1 100%;
    }

    .service-detail-card {
        padding: 1.5rem;
    }

    .service-detail-header {
        flex-direction: column;
        gap: 1rem;
    }

    .thanks-content {
        padding: 2rem 1.5rem;
    }

    .approach-item {
        flex-direction: column;
        gap: 1rem;
    }
}
