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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #4a8ba8;
    --accent-color: #e85d2f;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.ad-disclosure {
    background-color: var(--accent-color);
    color: white;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    font-weight: 500;
}

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

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

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

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: var(--primary-color);
    color: white;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-image {
    flex: 1;
    background-color: var(--bg-light);
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.split-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-layout.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--primary-color);
    line-height: 1.3;
}

.split-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.split-image {
    flex: 1;
    background-color: var(--bg-light);
}

.split-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.services-preview {
    padding: 100px 40px;
    background-color: var(--bg-light);
}

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

.section-header h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.section-header p {
    font-size: 20px;
    color: var(--text-light);
}

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

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 320px;
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    height: 240px;
    background-color: var(--bg-light);
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-info p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
}

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

.service-form {
    max-width: 600px;
}

.form-group {
    margin-bottom: 25px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    font-size: 16px;
    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(--primary-color);
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background-color: #d14d20;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 14px 35px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--primary-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

.trust-section {
    padding: 100px 40px;
    background-color: var(--primary-color);
    color: white;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 46px;
    margin-bottom: 50px;
    text-align: center;
}

.trust-grid {
    display: flex;
    gap: 50px;
}

.trust-item {
    flex: 1;
}

.trust-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.trust-item p {
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.95;
}

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

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.85;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: white;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    opacity: 0.7;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.97);
    color: white;
    padding: 25px 40px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: background-color 0.3s ease;
}

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

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

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

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

.page-header {
    padding: 80px 40px;
    text-align: center;
    background-color: var(--primary-color);
    color: white;
}

.page-header h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.95;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.service-detail-card {
    margin-bottom: 80px;
}

.service-detail-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
    background-color: var(--bg-light);
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.price-tag {
    font-size: 38px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
}

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

.cta-section {
    padding: 100px 40px;
    background-color: var(--bg-light);
    text-align: center;
}

.cta-content h2 {
    font-size: 46px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-content p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 35px;
}

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

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

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

.philosophy-content h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.philosophy-grid {
    display: flex;
    gap: 50px;
}

.philosophy-item {
    flex: 1;
}

.philosophy-item h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.philosophy-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
}

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

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

.values-section h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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

.value-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 40px;
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

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

.contact-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.contact-info p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

.contact-note {
    background-color: var(--bg-light);
    padding: 25px;
    margin-top: 30px;
}

.contact-note p {
    font-size: 16px;
    margin: 0;
}

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

.contact-image {
    flex: 1;
    background-color: var(--bg-light);
    min-height: 500px;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.location-content {
    max-width: 1200px;
    margin: 0 auto;
}

.location-content h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.location-grid {
    display: flex;
    gap: 50px;
}

.location-item {
    flex: 1;
}

.location-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.location-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
}

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

.faq-section h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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

.faq-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.thanks-section {
    padding: 100px 40px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 800px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #28a745;
    color: white;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-content > p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.thanks-details h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.next-steps {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    text-align: left;
}

.step {
    flex: 1;
    padding: 30px;
    background-color: var(--bg-light);
}

.step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.step p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.thanks-service-info {
    background-color: var(--bg-light);
    padding: 25px;
    margin-bottom: 40px;
    display: none;
}

.thanks-service-info p {
    font-size: 18px;
    margin: 0;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.thanks-note p {
    font-size: 16px;
    color: var(--text-light);
}

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

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-date {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.legal-container ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-container li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 10px;
}

.legal-container a {
    color: var(--primary-color);
    text-decoration: underline;
}

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-content {
        padding: 60px 30px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .trust-grid,
    .philosophy-grid,
    .location-grid {
        flex-direction: column;
    }

    .next-steps {
        flex-direction: column;
    }

    .service-detail-split,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .contact-layout {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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

    .nav-container {
        padding: 0 20px;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }
}