* {
    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: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.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 {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

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

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

.btn-accept {
    background: #0066cc;
    color: #ffffff;
}

.btn-accept:hover {
    background: #0052a3;
}

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

.btn-reject:hover {
    background: rgba(255,255,255,0.1);
}

.main-header {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
}

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

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

.main-nav a:hover {
    color: #0066cc;
}

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

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

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

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

.cta-primary:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,102,204,0.3);
}

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

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

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

.intro-split.reverse {
    flex-direction: row-reverse;
}

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

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

.intro-content-right {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-content-right h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

.services-showcase {
    background: #ffffff;
    padding: 100px 40px;
}

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

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

.services-header-center p {
    font-size: 18px;
    color: #4a4a4a;
}

.services-grid-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card-left,
.service-card-right {
    display: flex;
    gap: 40px;
    align-items: center;
}

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

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

.service-card-left img,
.service-card-right img {
    flex: 1;
    border-radius: 8px;
    object-fit: cover;
    background: #e5e5e5;
}

.service-info {
    flex: 1;
}

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

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

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

.btn-select-service {
    padding: 12px 30px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #0066cc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.form-section-split {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.form-container-left {
    flex: 1.2;
    padding: 60px;
}

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

.form-container-left > p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 35px;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 14px;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0,102,204,0.1);
}

.btn-submit {
    padding: 16px 40px;
    background: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,102,204,0.3);
}

.form-info-right {
    flex: 0.8;
    padding: 60px;
    background: #e8f0f7;
    display: flex;
    align-items: center;
}

.info-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box ul li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.6;
}

.info-box ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
    font-size: 18px;
}

.trust-split {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
}

.trust-content-left {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #1a1a1a;
    color: #ffffff;
}

.trust-content-left h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #ffffff;
}

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

.trust-image-right {
    flex: 1;
    background: #c0c0c0;
    overflow: hidden;
}

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

.disclaimer-section {
    background: #f5f5f5;
    padding: 50px 40px;
    border-top: 1px solid #e0e0e0;
}

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

.disclaimer-text {
    font-size: 13px;
    line-height: 1.7;
    color: #666;
    text-align: center;
}

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

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

.footer-left {
    flex: 1;
}

.footer-brand {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 15px;
}

.footer-left p {
    color: #b0b0b0;
    margin-bottom: 10px;
}

.footer-email {
    font-size: 14px;
}

.footer-right {
    flex: 1;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

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

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

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

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

.thanks-container .service-selected {
    background: #e8f0f7;
    padding: 20px;
    border-radius: 6px;
    margin: 30px 0;
}

.thanks-container .service-selected strong {
    color: #0066cc;
    font-size: 20px;
}

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

    .intro-split.reverse {
        flex-direction: column;
    }

    .service-card-left,
    .service-card-right {
        flex-direction: column;
    }

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

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

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

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

    .main-nav {
        gap: 20px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-content-left,
    .intro-content-right,
    .form-container-left,
    .trust-content-left {
        padding: 40px;
    }
}