* {
    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;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
}

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

.btn-accept:hover {
    background: #229954;
}

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

.btn-reject:hover {
    background: #6c7a7b;
}

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

.header-left .logo {
    font-size: 28px;
    font-weight: 700;
    color: #1a2332;
}

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

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

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

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

.nav-main a:hover {
    color: #3498db;
}

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

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 540px;
    padding: 60px;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 32px;
    line-height: 1.7;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #3498db;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #2980b9;
}

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

.intro-asymmetric {
    padding: 100px 60px;
    background: #ffffff;
}

.intro-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.intro-text {
    flex: 2;
}

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

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

.intro-stat {
    flex: 1;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.5;
}

.services-grid {
    padding: 80px 60px;
    background: #f8f9fa;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a2332;
}

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

.service-card-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 40px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

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

.service-visual,
.service-content {
    flex: 1;
}

.service-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.service-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #1a2332;
    line-height: 1.3;
}

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

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.btn-service {
    padding: 14px 32px;
    background: #3498db;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.3s;
    align-self: flex-start;
}

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

.btn-service.selected {
    background: #27ae60;
}

.trust-block {
    padding: 100px 60px;
}

.trust-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a2332;
}

.trust-content p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 50px;
}

.trust-metrics {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

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

.metric-value {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 16px;
    color: #5a6c7d;
}

.form-section {
    padding: 100px 60px;
    background: #ffffff;
}

.form-wrapper-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.form-left,
.form-right {
    flex: 1;
}

.form-left h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a2332;
    line-height: 1.3;
}

.form-left p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.7;
}

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

.selected-service-display {
    background: #e8f8f5;
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 24px;
    display: none;
    border-left: 4px solid #27ae60;
}

.selected-service-display.show {
    display: block;
}

.selected-service-display strong {
    display: block;
    color: #1a2332;
    margin-bottom: 4px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d8e0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    background: #ffffff;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #27ae60;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s;
}

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

.disclaimer-section {
    padding: 60px;
}

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

.disclaimer-content h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #1a2332;
}

.disclaimer-content p {
    font-size: 14px;
    color: #5a6c7d;
    line-height: 1.7;
}

.footer-main {
    background: #1a2332;
    color: #ffffff;
    padding: 60px 60px 30px;
}

.footer-content-split {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

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

.footer-col p,
.footer-col a {
    display: block;
    margin-bottom: 12px;
    color: #b8c5d3;
    font-size: 15px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2c3e50;
    color: #b8c5d3;
    font-size: 14px;
}

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

.page-header {
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a2332;
}

.page-content {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
}

.page-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #1a2332;
}

.page-content h3 {
    font-size: 22px;
    margin: 32px 0 16px;
    color: #2c3e50;
}

.page-content p {
    margin-bottom: 20px;
}

.page-content ul,
.page-content ol {
    margin: 20px 0 20px 40px;
}

.page-content li {
    margin-bottom: 12px;
}

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

.thanks-content {
    max-width: 700px;
    text-align: center;
    background: #f8f9fa;
    padding: 60px;
    border-radius: 8px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #ffffff;
}

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

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

.thanks-service-info {
    background: #e8f8f5;
    padding: 20px;
    border-radius: 6px;
    margin: 30px 0;
    border-left: 4px solid #27ae60;
}

.thanks-service-info strong {
    display: block;
    color: #1a2332;
    margin-bottom: 8px;
    font-size: 18px;
}

.btn-back {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background: #3498db;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

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

.contact-info-section {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin: 40px 0;
}

.contact-info-section h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1a2332;
}

.contact-detail {
    margin-bottom: 24px;
}

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.contact-detail p {
    font-size: 16px;
    color: #5a6c7d;
}

@media (max-width: 968px) {
    .header-split {
        flex-direction: column;
        padding: 20px 30px;
    }

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

    .hero-split,
    .service-card-split,
    .form-wrapper-split {
        flex-direction: column;
    }

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

    .intro-wrapper {
        flex-direction: column;
    }

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

    .page-container {
        padding: 60px 30px;
    }

    .footer-content-split {
        flex-direction: column;
    }
}