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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

.cookie-content a {
    color: #ffcc00;
    text-decoration: underline;
}

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

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

.btn-accept {
    background: #ffcc00;
    color: #1a1a1a;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 60px;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.header-left .logo {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

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

.header-right a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.header-right a:hover {
    color: #ffcc00;
}

.ad-notice {
    font-size: 12px;
    color: #666666;
    padding: 4px 10px;
    border: 1px solid #cccccc;
    border-radius: 4px;
}

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

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f8f8;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 32px;
    max-width: 520px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #333333;
}

.hero-visual {
    flex: 1;
    position: relative;
    background: #2c2c2c;
}

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

.intro-offset {
    display: flex;
    padding: 100px 60px;
    gap: 80px;
    align-items: center;
}

.intro-text {
    flex: 1.2;
}

.intro-text h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.intro-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
}

.intro-image {
    flex: 1;
    background: #e8e8e8;
}

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

.services-asymmetric {
    padding: 80px 60px;
    background: #fafafa;
}

.services-header {
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.services-header p {
    font-size: 18px;
    color: #666666;
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: #e0e0e0;
}

.service-card h3 {
    font-size: 22px;
    margin: 20px 20px 12px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
    margin: 0 20px 16px;
}

.service-card .price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #ffcc00;
    margin: 16px 20px;
}

.select-service {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 14px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #333333;
}

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

.form-visual {
    flex: 1;
    background: #d8d8d8;
}

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

.form-container {
    flex: 1;
    padding: 80px 60px;
    background: #ffffff;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-container > p {
    font-size: 16px;
    color: #666666;
    margin-bottom: 32px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 14px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #1a1a1a;
}

.form-group input[readonly] {
    background: #f5f5f5;
    color: #666666;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #ffcc00;
    color: #1a1a1a;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #e6b800;
}

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

.trust-block {
    padding: 100px 60px;
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.trust-content p {
    font-size: 17px;
    line-height: 1.8;
    max-width: 720px;
    margin: 0 auto;
    color: #cccccc;
}

.footer-split {
    display: flex;
    justify-content: space-between;
    padding: 60px 60px 40px;
    background: #f8f8f8;
    border-top: 1px solid #e0e0e0;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

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

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

.disclaimer-text {
    font-size: 12px;
    line-height: 1.6;
    color: #999999;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 16px;
}

.thanks-service {
    font-size: 18px;
    font-weight: 600;
    color: #ffcc00;
    margin: 24px 0;
}

.thanks-content a {
    display: inline-block;
    margin-top: 24px;
    padding: 14px 32px;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

.thanks-content a:hover {
    background: #333333;
}

@media (max-width: 968px) {
    .hero-split,
    .form-section-split {
        flex-direction: column;
    }

    .intro-offset {
        flex-direction: column;
        padding: 60px 30px;
        gap: 40px;
    }

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

    .header-split {
        padding: 20px 30px;
    }

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

    .footer-split {
        flex-direction: column;
        padding: 40px 30px;
    }
}