* {
    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: #2c3e50;
    background: #ffffff;
}

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

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

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

.header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a5490;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #1a5490;
}

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 5px 12px;
    background: #ecf0f1;
    border-radius: 4px;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background: #ffffff;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 99;
    padding: 20px;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    padding: 12px 0;
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    border-bottom: 1px solid #ecf0f1;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, #1a5490 0%, #2980b9 100%);
}

.hero-text-wrapper {
    max-width: 550px;
}

.hero-left h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-subtext {
    font-size: 18px;
    color: #ecf0f1;
    margin-bottom: 35px;
}

.cta-hero {
    display: inline-block;
    padding: 15px 35px;
    background: #ffffff;
    color: #1a5490;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.hero-right {
    flex: 1;
    background-color: #34495e;
}

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

.intro-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.intro-section h2 {
    font-size: 36px;
    color: #1a5490;
    margin-bottom: 25px;
    text-align: center;
}

.intro-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #5a6c7d;
    text-align: center;
}

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

.section-header-left {
    margin-bottom: 60px;
}

.section-header-left h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-header-left p {
    font-size: 20px;
    color: #7f8c8d;
}

.service-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    gap: 40px;
    align-items: center;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.service-content {
    flex: 1;
    padding: 40px;
}

.service-content h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-content p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.7;
}

.price-tag {
    font-size: 24px;
    color: #1a5490;
    font-weight: 700;
    margin-bottom: 20px;
}

.btn-service {
    padding: 12px 28px;
    background: #1a5490;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-service:hover {
    background: #2980b9;
}

.approach-section {
    padding: 100px 0;
    background: #1a5490;
}

.approach-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-content {
    flex: 1;
    padding: 60px;
    color: #ffffff;
}

.approach-content h2 {
    font-size: 42px;
    margin-bottom: 50px;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.step {
    display: flex;
    gap: 20px;
}

.step-number {
    font-size: 36px;
    font-weight: 700;
    color: #ecf0f1;
    opacity: 0.5;
    min-width: 60px;
}

.step h4 {
    font-size: 22px;
    margin-bottom: 8px;
}

.step p {
    color: #ecf0f1;
    line-height: 1.6;
}

.approach-visual {
    flex: 1;
    background-color: #34495e;
}

.approach-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials {
    padding: 100px 20px;
    background: #f8f9fa;
}

.testimonials h2 {
    font-size: 42px;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 60px;
}

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

.testimonial {
    flex: 1;
    background: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.quote {
    font-size: 16px;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 20px;
    font-style: italic;
}

.author {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 600;
}

.form-section {
    padding: 100px 20px;
}

.form-intro {
    text-align: center;
    margin-bottom: 50px;
}

.form-intro h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.form-intro p {
    font-size: 18px;
    color: #7f8c8d;
}

.consultation-form {
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: flex;
    gap: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ecf0f1;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a5490;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: #1a5490;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #2980b9;
}

.disclaimer-section {
    padding: 60px 20px;
    background: #ecf0f1;
}

.disclaimer {
    font-size: 13px;
    color: #7f8c8d;
    line-height: 1.7;
    text-align: center;
}

.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 20px 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: #ecf0f1;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    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: #3498db;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-accept {
    background: #27ae60;
    color: #ffffff;
}

.btn-reject {
    background: #7f8c8d;
    color: #ffffff;
}

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.9;
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.thanks-container h1 {
    font-size: 42px;
    color: #27ae60;
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 15px;
}

.thanks-container .btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 35px;
    background: #1a5490;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
}

.thanks-container .btn-home:hover {
    background: #2980b9;
}

.page-hero {
    background: linear-gradient(135deg, #1a5490 0%, #2980b9 100%);
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
    color: #ecf0f1;
}

.about-intro {
    padding: 80px 20px;
    background: #f8f9fa;
}

.lead-text {
    font-size: 22px;
    line-height: 1.8;
    color: #2c3e50;
    text-align: center;
}

.story-section {
    padding: 0;
}

.values-section {
    padding: 100px 20px;
    background: #ffffff;
}

.values-section h2 {
    font-size: 42px;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 60px;
}

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

.value-card {
    flex: 1;
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 8px;
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card h3 {
    font-size: 24px;
    color: #1a5490;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.team-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.team-section h2 {
    font-size: 42px;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 60px;
}

.approach-cards {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-card {
    flex: 1;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.approach-card h4 {
    font-size: 22px;
    color: #1a5490;
    margin-bottom: 15px;
}

.approach-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1a5490 0%, #2980b9 100%);
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    color: #ecf0f1;
    margin-bottom: 35px;
}

.services-detail {
    padding: 60px 20px 100px;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 80px;
}

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

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

.service-detail-content h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 25px;
}

.service-detail-content h4 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 15px;
    margin-top: 25px;
}

.service-detail-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.service-detail-content ul li {
    padding-left: 25px;
    margin-bottom: 12px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: #5a6c7d;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-detail-image {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

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

.contact-content {
    padding: 60px 20px 100px;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 18px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item h4 {
    font-size: 18px;
    color: #1a5490;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.contact-note {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #1a5490;
}

.contact-note p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

.legal-content {
    padding: 60px 20px 100px;
}

.legal-content h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 25px;
    margin-top: 50px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
    margin-top: 35px;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 10px;
}

@media (max-width: 968px) {
    .nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-split {
        flex-direction: column;
    }

    .hero-left {
        padding: 50px 30px;
    }

    .hero-left h1 {
        font-size: 36px;
    }

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

    .approach-split {
        flex-direction: column;
    }

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

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

    .form-row {
        flex-direction: column;
    }

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

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

    .approach-cards {
        flex-direction: column;
    }

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

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

    .page-hero h1 {
        font-size: 36px;
    }
}

@media (max-width: 600px) {
    .hero-left h1 {
        font-size: 28px;
    }

    .section-header-left h2 {
        font-size: 32px;
    }

    .consultation-form {
        padding: 30px 20px;
    }

    .page-hero h1 {
        font-size: 28px;
    }

    .values-section h2,
    .team-section h2,
    .cta-section h2 {
        font-size: 32px;
    }
}