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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

h1, h2, h3, h4 {
    line-height: 1.3;
    font-weight: 700;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.2rem;
}

.main-nav {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1.2rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

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

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

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

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

.hero-split {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 3rem 0;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.hero-text {
    flex: 1;
}

.hero-visual {
    flex: 1;
}

.hero-visual img {
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.hero-intro {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.btn-cta {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(231,76,60,0.3);
}

.split-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

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

.split-section:nth-child(even) {
    background: var(--bg-light);
}

.section-visual,
.section-content {
    flex: 1;
}

.split-section .hero-content {
    display: flex;
    gap: 6rem;
    align-items: center;
}

.split-section.reverse .hero-content {
    flex-direction: row-reverse;
}

.section-visual img {
    border-radius: 8px;
}

.link-arrow {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
}

.link-arrow:hover {
    color: var(--primary-color);
}

.stats-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
    background: var(--primary-color);
    color: white;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.feature-list {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.feature-item h3 {
    margin-bottom: 0.3rem;
    font-size: 1.2rem;
}

.feature-item p {
    color: var(--text-light);
    margin-bottom: 0;
}

.testimonial-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
}

.testimonial cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    color: var(--text-light);
    font-size: 0.95rem;
}

.approach-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.approach-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.approach-text {
    flex: 1;
}

.approach-visual {
    flex: 1;
}

.approach-visual img {
    border-radius: 8px;
}

.services-preview {
    background: var(--bg-light);
    padding: 5rem 0;
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.service-card.featured {
    border: 2px solid var(--secondary-color);
}

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

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1rem 0;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
    flex-grow: 1;
}

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.btn-select {
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

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

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

.audience-list {
    list-style: none;
    margin: 2rem 0;
}

.audience-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.audience-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.cta-section {
    background: var(--primary-color);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.btn-cta-large {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background: white;
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

.form-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    background: var(--secondary-color);
    color: white;
    padding: 1.2rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.form-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1.5rem;
}

.form-note a {
    color: var(--accent-color);
}

.final-push {
    padding: 5rem 0;
    background: var(--bg-white);
}

.push-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.main-footer {
    background: var(--primary-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section a {
    display: block;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-section p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

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

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 90;
}

.sticky-btn {
    display: block;
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 25px rgba(231,76,60,0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(231,76,60,0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    z-index: 1000;
    padding: 1.5rem;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

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

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-primary,
.btn-secondary {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: #c0392b;
}

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

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

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), #34495e);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.hero-content-center {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content-center h1 {
    color: white;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

.contact-info-section {
    padding: 5rem 0;
}

.contact-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-visual {
    flex: 1;
}

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

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: var(--accent-color);
}

.contact-item a:hover {
    color: var(--secondary-color);
}

.location-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.location-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.map-placeholder {
    background: white;
    padding: 5rem;
    border-radius: 8px;
    margin-top: 2rem;
    border: 2px dashed var(--border-color);
}

.map-placeholder p {
    font-size: 1.5rem;
    color: var(--text-light);
}

.faq-section {
    padding: 5rem 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.thanks-hero {
    background: linear-gradient(135deg, var(--success-color), #229954);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: white;
    color: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    margin: 0 auto 2rem;
}

.thanks-hero h1 {
    color: white;
}

.thanks-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
}

.thanks-details {
    padding: 5rem 0;
    background: var(--bg-white);
}

.thanks-info {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.thanks-info h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.step-item {
    flex: 1;
    min-width: 250px;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.thanks-service-info {
    background: var(--bg-light);
    padding: 3rem 0;
}

.service-confirmation-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.selected-service-display {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.preparation-section {
    padding: 5rem 0;
}

.preparation-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.preparation-list {
    list-style: none;
    margin-top: 2rem;
}

.preparation-list li {
    padding: 1rem;
    padding-left: 2.5rem;
    position: relative;
    margin-bottom: 1rem;
    background: var(--bg-light);
    border-radius: 5px;
}

.preparation-list li::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.thanks-resources {
    background: var(--bg-light);
    padding: 5rem 0;
}

.resources-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.resources-content h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.resources-content > p {
    text-align: center;
    margin-bottom: 3rem;
}

.resources-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.resource-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.resource-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thanks-cta {
    background: var(--bg-white);
    padding: 5rem 0;
}

.legal-page {
    padding: 3rem 0;
    background: var(--bg-light);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: white;
    border-radius: 8px;
}

.legal-container h1 {
    color: var(--primary-color);
    border-bottom: 3px solid var(--secondary-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.legal-container h2 {
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-container h3,
.legal-container h4 {
    color: var(--text-dark);
    margin-top: 1.5rem;
}

.legal-container ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-container li {
    margin-bottom: 0.5rem;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

.services-detail {
    padding: 3rem 0;
    background: var(--bg-light);
}

.service-detail-card {
    max-width: 1400px;
    margin: 0 auto 4rem;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.featured-badge-large {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    z-index: 10;
}

.service-detail-content {
    display: flex;
    gap: 4rem;
    padding: 3rem;
}

.service-detail-content.reverse {
    flex-direction: row-reverse;
}

.service-detail-text {
    flex: 1.2;
}

.service-detail-visual {
    flex: 0.8;
}

.service-detail-visual img {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-price-large {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1rem 0 1.5rem;
}

.service-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.service-includes {
    list-style: none;
    margin: 1.5rem 0 2rem;
}

.service-includes li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.btn-select-large {
    background: var(--secondary-color);
    color: white;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-select-large:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231,76,60,0.3);
}

.comparison-section {
    background: var(--bg-white);
    padding: 5rem 0;
}

.comparison-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.comparison-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.comparison-card {
    flex: 1;
    min-width: 250px;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.comparison-card h3 {
    margin-bottom: 1rem;
}

.comparison-card p {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.guarantee-section {
    background: var(--primary-color);
    color: white;
    padding: 4rem 0;
}

.guarantee-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.guarantee-content h2 {
    color: white;
}

.guarantee-content p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.booking-cta-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.philosophy-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.philosophy-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.philosophy-content h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.philosophy-item {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
}

.philosophy-item h3 {
    color: var(--primary-color);
}

.values-section {
    padding: 5rem 0;
}

.values-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1;
    min-width: 250px;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.value-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.team-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.team-intro {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .nav-links {
        gap: 1.2rem;
        font-size: 0.9rem;
    }

    .hero-content,
    .split-section .hero-content,
    .approach-grid,
    .contact-split {
        flex-direction: column;
        gap: 2rem;
    }

    .stats-grid {
        flex-direction: column;
    }

    .services-grid {
        flex-direction: column;
    }

    .service-card {
        min-width: 100%;
    }

    .testimonial-container {
        flex-direction: column;
    }

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

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

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .service-detail-content,
    .service-detail-content.reverse {
        flex-direction: column;
        padding: 2rem;
    }

    .footer-content {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .hero-content,
    .approach-grid,
    .contact-split {
        padding: 0 1rem;
    }

    .form-container {
        padding: 0 1rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }
}