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

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

.header {
    background-color: #1a365d;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

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

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

.nav a:hover {
    color: #ffffff;
}

.ad-label {
    font-size: 11px;
    color: #cbd5e0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

.mobile-nav a {
    color: #ffffff;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: #63b3ed;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 80px;
    background-color: #f7fafc;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a202c;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
}

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

.btn-primary {
    display: inline-block;
    background-color: #2c5282;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #1a365d;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2c5282;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 5px;
    border: 2px solid #2c5282;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2c5282;
    color: #ffffff;
}

.intro-section {
    padding: 80px 0;
}

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a202c;
    font-weight: 700;
    line-height: 1.3;
}

.split-content p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.8;
}

.split-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

.services-preview {
    padding: 80px 0;
    background-color: #f7fafc;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center h2 {
    font-size: 42px;
    color: #1a202c;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header-center p {
    font-size: 18px;
    color: #718096;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    margin-bottom: 25px;
    border-radius: 8px;
    overflow: hidden;
    height: 200px;
}

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

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a202c;
    font-weight: 700;
}

.service-card p {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2c5282;
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    background-color: #2c5282;
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: #1a365d;
}

.cta-split {
    display: flex;
    min-height: 400px;
}

.cta-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px;
    color: #ffffff;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 17px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.cta-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f7fafc;
    padding: 60px;
}

.stats-box {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #2c5282;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #4a5568;
}

.form-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

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

.form-intro h2 {
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 15px;
    font-weight: 700;
}

.form-intro p {
    font-size: 17px;
    color: #718096;
}

.contact-form {
    background-color: #f7fafc;
    padding: 40px;
    border-radius: 8px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e0;
    border-radius: 5px;
    font-size: 15px;
    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: #2c5282;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #4a5568;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
}

.checkbox-label a {
    color: #2c5282;
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    background-color: #2c5282;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    padding: 60px 0;
    background-color: #fef5e7;
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff3cd;
    border-left: 4px solid #f59e0b;
    border-radius: 5px;
}

.disclaimer-box p {
    font-size: 14px;
    color: #744210;
    line-height: 1.7;
}

.footer {
    background-color: #1a202c;
    color: #cbd5e0;
    padding: 60px 0 20px;
}

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #a0aec0;
}

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

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

.footer-col ul li a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    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-buttons {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #48bb78;
    color: #ffffff;
}

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

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

.btn-reject:hover {
    background-color: #c53030;
}

.page-hero {
    background-color: #2c5282;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

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

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
}

.services-detail {
    padding: 80px 0;
}

.service-detail-item {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

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

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.8;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #2c5282;
    margin: 25px 0;
}

.service-detail-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 350px;
}

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

.cta-section {
    padding: 80px 0;
    background-color: #f7fafc;
}

.cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-box p {
    font-size: 18px;
    color: #718096;
    margin-bottom: 30px;
}

.about-intro {
    padding: 80px 0;
}

.values-section {
    padding: 80px 0;
    background-color: #f7fafc;
}

.values-section h2 {
    text-align: center;
    font-size: 42px;
    color: #1a202c;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

.value-card p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.7;
}

.team-section {
    padding: 80px 0;
}

.team-section h2 {
    text-align: center;
    font-size: 42px;
    color: #1a202c;
    margin-bottom: 20px;
    font-weight: 700;
}

.team-intro {
    text-align: center;
    font-size: 18px;
    color: #718096;
    margin-bottom: 50px;
}

.team-description {
    max-width: 900px;
    margin: 0 auto;
}

.team-description p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.8;
}

.timeline-section {
    padding: 80px 0;
    background-color: #f7fafc;
}

.timeline-section h2 {
    text-align: center;
    font-size: 42px;
    color: #1a202c;
    margin-bottom: 60px;
    font-weight: 700;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
}

.timeline-year {
    font-size: 32px;
    font-weight: 700;
    color: #2c5282;
    min-width: 120px;
}

.timeline-content h3 {
    font-size: 22px;
    color: #1a202c;
    margin-bottom: 10px;
    font-weight: 700;
}

.timeline-content p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.7;
}

.contact-section {
    padding: 80px 0;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 40px;
    font-weight: 700;
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 20px;
    color: #1a202c;
    margin-bottom: 10px;
    font-weight: 700;
}

.info-block p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 18px;
    color: #718096;
    font-weight: 600;
}

.contact-form-section {
    padding: 80px 0;
    background-color: #f7fafc;
}

.form-wrapper-contact {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.form-wrapper-contact h2 {
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 15px;
    font-weight: 700;
}

.form-wrapper-contact p {
    font-size: 17px;
    color: #718096;
    margin-bottom: 40px;
}

.thanks-section {
    padding: 100px 0;
    background-color: #f7fafc;
    min-height: 600px;
}

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

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-icon svg {
    margin: 0 auto;
}

.thanks-box h1 {
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-message {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-confirmation {
    background-color: #e6fffa;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.service-confirmation p {
    font-size: 16px;
    color: #234e52;
}

.thanks-info {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-info h3 {
    font-size: 22px;
    color: #1a202c;
    margin-bottom: 15px;
    font-weight: 700;
}

.thanks-info ul {
    list-style-position: inside;
    color: #4a5568;
    font-size: 15px;
    line-height: 2;
}

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

.thanks-contact {
    border-top: 1px solid #e2e8f0;
    padding-top: 30px;
    font-size: 15px;
    color: #4a5568;
}

.thanks-contact p {
    margin-bottom: 8px;
}

.legal-page {
    padding: 80px 0;
}

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

.legal-content h1 {
    font-size: 42px;
    color: #1a202c;
    margin-bottom: 15px;
    font-weight: 700;
}

.last-updated {
    font-size: 14px;
    color: #718096;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    color: #1a202c;
    margin: 40px 0 20px;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    color: #2d3748;
    margin: 30px 0 15px;
    font-weight: 700;
}

.legal-content p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.8;
}

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

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

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

    .hamburger {
        display: flex;
    }

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

    .hero-left {
        padding: 40px 20px;
    }

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

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

    .hero-right {
        min-height: 300px;
    }

    .split-layout {
        flex-direction: column;
        gap: 30px;
    }

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

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

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

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

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

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

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

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

    .thanks-box {
        padding: 40px 20px;
    }

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