* {
    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.7;
    color: #1a1a1a;
    background: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 24px;
    z-index: 10000;
    display: none;
}

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

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

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 28px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: #2c5aa0;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background: #234a85;
}

.btn-cookie-reject {
    background: #e0e0e0;
    color: #333;
}

.btn-cookie-reject:hover {
    background: #d0d0d0;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5aa0;
    text-decoration: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.ad-disclosure {
    font-size: 12px;
    color: #666;
    padding: 6px 14px;
    background: #f5f5f5;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

.nav-main {
    display: flex;
    gap: 28px;
}

.nav-main a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-main a:hover {
    color: #2c5aa0;
}

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

.hero-left {
    flex: 1;
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-left h1 {
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-left p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 36px;
    color: #444;
}

.cta-hero {
    display: inline-block;
    padding: 16px 36px;
    background: #2c5aa0;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-hero:hover {
    background: #234a85;
    transform: translateY(-2px);
}

.hero-right {
    flex: 1;
    background: #d4dce6;
    overflow: hidden;
}

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

.intro-reverse {
    display: flex;
    background: #ffffff;
    margin: 64px 0;
}

.intro-image {
    flex: 1;
    background: #e8edf2;
    overflow: hidden;
}

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

.intro-text {
    flex: 1;
    padding: 64px 56px;
}

.intro-text h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.intro-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.services-section {
    padding: 80px 48px;
    background: #f8f9fa;
}

.services-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 64px;
    color: #1a1a1a;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.service-card {
    display: flex;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.service-visual {
    flex: 1;
    background: #d8dfe6;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-info h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.service-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 24px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 24px;
}

.select-service {
    padding: 14px 32px;
    background: #2c5aa0;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.select-service:hover {
    background: #234a85;
    transform: scale(1.02);
}

.select-service.selected {
    background: #28a745;
}

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

.form-container-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 64px;
}

.form-description {
    flex: 1;
    padding-right: 32px;
}

.form-description h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.form-description p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 18px;
}

.form-wrapper {
    flex: 1;
    background: #f8f9fa;
    padding: 44px;
    border-radius: 8px;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-notice {
    padding: 16px;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 6px;
    font-size: 15px;
    color: #856404;
    display: none;
}

.form-notice.show {
    display: block;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    font-size: 15px;
    color: #333;
}

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5aa0;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.btn-submit {
    padding: 16px 36px;
    background: #28a745;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover:not(:disabled) {
    background: #218838;
    transform: translateY(-2px);
}

.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.trust-section {
    padding: 80px 48px;
    background: #2c5aa0;
    color: #ffffff;
}

.trust-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 56px;
}

.trust-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 48px;
}

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

.trust-number {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

.footer-split {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    padding: 64px 48px;
    background: #1a1a1a;
    color: #ffffff;
}

.footer-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

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

.footer-column a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.thanks-container {
    max-width: 800px;
    margin: 120px auto;
    padding: 64px 48px;
    background: #ffffff;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #28a745;
}

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

.service-selected {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 6px;
    margin: 32px 0;
    border-left: 4px solid #2c5aa0;
}

.service-selected strong {
    color: #2c5aa0;
}

.btn-home {
    display: inline-block;
    margin-top: 32px;
    padding: 16px 36px;
    background: #2c5aa0;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-home:hover {
    background: #234a85;
    transform: translateY(-2px);
}

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

.content-page h1 {
    font-size: 44px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.content-page h2 {
    font-size: 32px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.content-page h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #333;
}

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

.content-page ul,
.content-page ol {
    margin: 20px 0;
    padding-left: 32px;
}

.content-page li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #444;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    gap: 64px;
}

.contact-info-section {
    flex: 1;
    padding: 48px;
    background: #ffffff;
    border-radius: 8px;
}

.contact-info-section h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

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

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c5aa0;
}

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

.contact-map {
    flex: 1;
    background: #e8edf2;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #666;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-reverse,
    .service-card,
    .form-container-split,
    .contact-split,
    .footer-split {
        flex-direction: column;
    }

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

    .trust-grid {
        flex-direction: column;
        align-items: center;
    }

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

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        gap: 20px;
    }

    .header-right {
        flex-direction: column;
        gap: 16px;
    }

    .nav-main {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

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

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

    .content-page {
        padding: 0 24px;
    }
}