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

.main-nav {
    background-color: #1a365d;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.ad-notice {
    font-size: 0.75rem;
    color: #cbd5e0;
    padding: 0.3rem 0.8rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

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

.hero-section {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    background-color: #f7fafc;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    color: #ffffff;
    z-index: 10;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 650px;
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2b6cb0;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(43, 108, 176, 0.3);
}

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

.intro-section {
    background-color: #ffffff;
    padding: 5rem 0;
}

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

.intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a365d;
    line-height: 1.3;
}

.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #4a5568;
    line-height: 1.8;
}

.values-section {
    background-color: #edf2f7;
    padding: 4.5rem 0;
}

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

.value-card {
    flex: 1 1 300px;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2b6cb0;
}

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

.services-section {
    background-color: #f7fafc;
    padding: 6rem 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a365d;
}

.section-header p {
    font-size: 1.15rem;
    color: #718096;
}

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

.service-block {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-block.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1 1 45%;
    min-height: 350px;
    background-color: #e2e8f0;
}

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

.service-content {
    flex: 1 1 55%;
    padding: 3rem;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a365d;
}

.service-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
    line-height: 1.7;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2b6cb0;
    margin-bottom: 1.5rem;
}

.select-service {
    padding: 0.9rem 2rem;
    background-color: #38a169;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.select-service:hover {
    background-color: #2f855a;
    transform: translateY(-1px);
}

.form-section {
    background-color: #ffffff;
    padding: 5rem 0;
}

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

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a365d;
    text-align: center;
}

.form-container > p {
    text-align: center;
    color: #718096;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d3748;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2b6cb0;
}

.form-group input[readonly] {
    background-color: #edf2f7;
    cursor: not-allowed;
}

.submit-btn {
    width: 100%;
    padding: 1.1rem;
    background-color: #2b6cb0;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.disclaimer-section {
    background-color: #fffaf0;
    padding: 3rem 0;
    border-top: 3px solid #f6ad55;
    border-bottom: 3px solid #f6ad55;
}

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

.disclaimer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #c05621;
}

.disclaimer-content p {
    font-size: 0.95rem;
    color: #744210;
    line-height: 1.7;
}

.main-footer {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 3rem 0 1rem;
}

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

.footer-col {
    flex: 1 1 220px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cbd5e0;
}

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

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem 0;
    border-top: 1px solid #2d3748;
    text-align: center;
    color: #a0aec0;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    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: 2rem;
}

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.cookie-btn.accept:hover {
    background-color: #2f855a;
    transform: translateY(-1px);
}

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

.cookie-btn.reject:hover {
    background-color: #4a5568;
    transform: translateY(-1px);
}

.page-header {
    background-color: #1a365d;
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #cbd5e0;
}

.about-intro {
    padding: 5rem 0;
    background-color: #ffffff;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-image {
    flex: 1 1 45%;
    background-color: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

.about-text {
    flex: 1 1 55%;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a365d;
}

.about-text p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #4a5568;
    line-height: 1.8;
}

.approach-section {
    background-color: #edf2f7;
    padding: 5rem 0;
}

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

.approach-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a365d;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.step {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 5px solid #2b6cb0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2b6cb0;
    opacity: 0.3;
    margin-bottom: 0.5rem;
}

.step h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a365d;
}

.step p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.values-detail {
    background-color: #ffffff;
    padding: 5rem 0;
}

.values-detail-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.values-detail-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a365d;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    padding: 2rem;
    background-color: #f7fafc;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2b6cb0;
}

.value-item p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.services-detail-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.service-detail-item {
    display: flex;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: center;
}

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

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

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a365d;
}

.service-detail-content p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.8;
}

.service-price-block {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2b6cb0;
    margin: 2rem 0 1.5rem;
}

.cta-link {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: #38a169;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-link:hover {
    background-color: #2f855a;
    transform: translateY(-1px);
}

.service-detail-image {
    flex: 1 1 45%;
    background-color: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

.contact-info-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

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

.contact-card {
    flex: 1 1 300px;
    background-color: #f7fafc;
    padding: 2.5rem;
    border-radius: 8px;
    border-top: 4px solid #2b6cb0;
}

.contact-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a365d;
}

.contact-card p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.contact-cta-section {
    background-color: #edf2f7;
    padding: 5rem 0;
}

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

.contact-cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a365d;
}

.contact-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #4a5568;
    line-height: 1.8;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f7fafc;
    padding: 4rem 2rem;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 4rem 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #38a169;
    color: #ffffff;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a365d;
}

.thanks-content p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.thanks-actions {
    margin-top: 2.5rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #718096;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-secondary:hover {
    background-color: #4a5568;
    transform: translateY(-1px);
}

.legal-page {
    padding: 3rem 0;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #1a365d;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2b6cb0;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2d3748;
}

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

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

.legal-content ul li {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #2b6cb0;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #2c5282;
}

@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 68px;
        left: -100%;
        width: 100%;
        background-color: #1a365d;
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

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

    .service-image,
    .service-content {
        flex: 1 1 100%;
    }

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

    .about-image,
    .about-text,
    .service-detail-content,
    .service-detail-image {
        flex: 1 1 100%;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .section-header h2,
    .approach-container h2,
    .values-detail-content h2 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .thanks-content {
        padding: 2.5rem 1.5rem;
    }

    .thanks-content h1 {
        font-size: 2rem;
    }
}