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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2980b9;
    --accent-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #bdc3c7;
    --success-color: #27ae60;
    --warning-color: #f39c12;
}

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

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

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

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

.brand {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

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

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

.hero-visual {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: var(--text-dark);
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 77, 122, 0.85) 0%, rgba(41, 128, 185, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-content {
    text-align: center;
    color: var(--bg-white);
    padding: 0 20px;
    max-width: 900px;
}

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

.hero-content p {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.5;
}

.content-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.content-wrap.narrow {
    max-width: 900px;
}

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

.intro-story h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--primary-color);
    line-height: 1.3;
}

.intro-story p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.8;
}

.problem-section {
    background-color: var(--bg-white);
}

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

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

.split-text {
    flex: 1;
}

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

.split-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.split-text h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.problem-list {
    list-style: none;
    padding-left: 0;
}

.problem-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 17px;
    line-height: 1.6;
}

.problem-list li::before {
    content: "×";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 24px;
    font-weight: 700;
}

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

.insight-reveal h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.insight-reveal p {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.8;
}

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

.insight-card {
    flex: 1;
    background-color: var(--bg-white);
    padding: 35px;
    border-left: 4px solid var(--secondary-color);
}

.insight-card h4 {
    font-size: 21px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.insight-card p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.services-showcase {
    background-color: var(--bg-white);
}

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

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

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

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: var(--bg-light);
}

.service-card h3 {
    font-size: 22px;
    padding: 25px 25px 15px;
    color: var(--primary-color);
}

.service-card p {
    padding: 0 25px 20px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

.service-card .price {
    padding: 15px 25px;
    font-size: 26px;
    font-weight: 700;
    color: var(--accent-color);
    border-top: 1px solid var(--bg-light);
}

.service-card .select-service {
    width: 100%;
    padding: 15px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.service-card .select-service:hover {
    background-color: var(--primary-color);
}

.testimonial-section {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.testimonial-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--bg-white);
}

.testimonials {
    display: flex;
    gap: 40px;
}

.testimonial {
    flex: 1;
    padding: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--accent-color);
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial .author {
    font-size: 15px;
    font-weight: 600;
    opacity: 0.9;
}

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 80px 20px;
}

.form-container h2 {
    font-size: 38px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--primary-color);
}

.form-container > p {
    text-align: center;
    font-size: 17px;
    margin-bottom: 40px;
    color: var(--text-light);
}

.contact-form {
    background-color: var(--bg-white);
    padding: 45px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border: none;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #d35400;
}

.disclaimer-section {
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
}

.disclaimer {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
    font-style: italic;
    padding: 20px;
    background-color: var(--bg-light);
    border-left: 3px solid var(--warning-color);
}

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

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #95a5a6;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #95a5a6;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 25px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

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

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

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

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

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

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

.cookie-btn.reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

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

.page-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
    background-color: var(--text-dark);
}

.page-hero.small {
    height: 250px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.page-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
}

.page-hero .hero-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero h1 {
    font-size: 48px;
    color: var(--bg-white);
}

.about-content h2,
.values-section h2,
.approach-section h2,
.team-section h2,
.why-choose-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.about-content p,
.approach-section p,
.team-section p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

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

.value-card {
    flex: 1;
    background-color: var(--bg-white);
    padding: 35px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

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

.approach-section {
    background-color: var(--bg-white);
}

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

.why-choose-section {
    background-color: var(--bg-white);
}

.reasons-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.reason-item {
    flex: 1 1 calc(50% - 15px);
    padding: 25px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
}

.reason-item h4 {
    font-size: 19px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.reason-item p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

.services-intro {
    background-color: var(--bg-light);
    text-align: center;
}

.services-intro p {
    font-size: 19px;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

.services-detailed {
    background-color: var(--bg-white);
}

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

.service-detail:last-child {
    margin-bottom: 0;
}

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

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

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

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

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

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

.service-detail-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.price-block {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
}

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

.price-block .select-service {
    padding: 14px 30px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.price-block .select-service:hover {
    background-color: var(--primary-color);
}

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

.additional-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--primary-color);
}

.info-columns {
    display: flex;
    gap: 30px;
}

.info-column {
    flex: 1;
    text-align: center;
}

.info-column h4 {
    font-size: 19px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.info-column p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

.cta-section {
    background-color: var(--secondary-color);
    text-align: center;
    color: var(--bg-white);
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 35px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #d35400;
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid var(--bg-white);
    margin-left: 15px;
}

.cta-button.secondary:hover {
    background-color: rgba(255,255,255,0.1);
}

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

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

.contact-info-section {
    flex: 1;
}

.contact-additional {
    flex: 1;
}

.contact-info-section h2,
.contact-additional h3 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.contact-detail {
    margin-bottom: 30px;
}

.contact-detail h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 600;
}

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

.contact-additional p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.location-section {
    background-color: var(--bg-white);
}

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

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

.thanks-page {
    background-color: var(--bg-light);
    min-height: 500px;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--bg-white);
    padding: 60px 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.thanks-content h1 {
    font-size: 42px;
    color: var(--success-color);
    margin-bottom: 25px;
}

.thanks-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-confirmation {
    background-color: var(--bg-light);
    padding: 20px;
    margin: 25px 0;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 18px;
}

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

.next-steps {
    background-color: var(--bg-white);
}

.next-steps h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--primary-color);
}

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

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

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

.step-card h4 {
    font-size: 19px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.legal-page {
    background-color: var(--bg-white);
}

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

.update-date {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-page h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.legal-page ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-page ul li {
    margin-bottom: 10px;
    line-height: 1.7;
    font-size: 16px;
}

.legal-page a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.legal-page a:hover {
    color: var(--primary-color);
}

@media (max-width: 968px) {
    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 18px;
    }

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

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

    .insight-cards,
    .testimonials,
    .values-grid,
    .info-columns,
    .steps-grid,
    .contact-layout {
        flex-direction: column;
    }

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

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

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

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

    .nav-links {
        gap: 20px;
    }

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

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

    .reason-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 600px) {
    .hero-visual {
        height: 400px;
    }

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

    .hero-content p {
        font-size: 16px;
    }

    .content-wrap {
        padding: 50px 20px;
    }

    .brand {
        font-size: 22px;
    }

    .nav-container {
        height: 60px;
    }

    .page-hero {
        height: 250px;
    }

    .page-hero.small {
        height: 180px;
    }
}