* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

.ad-notice {
    background: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

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

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

.header-right {
    display: flex;
    gap: 35px;
}

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

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

.hero-split {
    display: flex;
    min-height: 85vh;
    background: #fafafa;
}

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

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

.hero-content p {
    font-size: 20px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 35px;
    max-width: 520px;
}

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

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

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

.cta-primary:hover {
    background: #1e4580;
}

.intro-split {
    display: flex;
    align-items: center;
    padding: 90px 60px;
}

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

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

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

.intro-content {
    flex: 1;
    padding: 0 70px;
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 700;
}

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

.services-overview {
    padding: 100px 60px;
    background: #f5f5f5;
}

.services-overview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

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

.service-card h3 {
    font-size: 22px;
    margin: 20px 25px 12px;
    font-weight: 700;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0 25px 20px;
    flex-grow: 1;
}

.service-card .price {
    font-size: 24px;
    font-weight: 700;
    color: #2c5aa0;
    margin: 0 25px 15px;
}

.service-card .select-service {
    margin: 0 25px 25px;
    padding: 12px;
    background: #2c5aa0;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.service-card .select-service:hover {
    background: #1e4580;
}

.form-section {
    display: flex;
    padding: 0;
    background: #ffffff;
}

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

.form-container h2 {
    font-size: 38px;
    margin-bottom: 30px;
    font-weight: 700;
}

.selected-service-display {
    background: #e8f4f8;
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 25px;
    font-weight: 600;
    color: #2c5aa0;
}

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

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

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

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

.btn-submit {
    padding: 16px 50px;
    background: #2c5aa0;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #1e4580;
}

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

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

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

.trust-section {
    padding: 90px 60px;
    background: #2c2c2c;
    color: #ffffff;
}

.trust-content h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.trust-grid {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    flex: 1;
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.trust-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #cccccc;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
    max-width: 1400px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col p {
    color: #aaaaaa;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: #aaaaaa;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 30px;
    max-width: 1400px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.8;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 25px 60px;
    display: none;
    z-index: 1000;
}

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

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

.cookie-content p {
    flex: 1;
    margin-right: 30px;
    font-size: 15px;
    color: #444;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-accept:hover {
    background: #1e4580;
}

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

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

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

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

    .service-card {
        flex: 1 1 calc(50% - 15px);
    }

    .trust-grid {
        flex-direction: column;
        gap: 30px;
    }
}

.services-detail {
    padding: 60px 0;
}

.service-detail-item {
    display: flex;
    align-items: center;
    padding: 60px 60px;
    border-bottom: 1px solid #e8e8e8;
}

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

.service-detail-content {
    flex: 1;
    padding: 0 50px;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.price-tag {
    font-size: 26px;
    font-weight: 700;
    color: #2c5aa0;
    margin: 25px 0;
}

.service-features {
    list-style: none;
    margin-top: 20px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: bold;
    font-size: 18px;
}

.service-detail-visual {
    flex: 1;
    background: #e8e8e8;
}

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

.cta-section {
    padding: 80px 60px;
    text-align: center;
    background: #f5f5f5;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-section p {
    font-size: 19px;
    color: #555;
    margin-bottom: 30px;
}

.about-hero {
    padding: 100px 60px;
    background: #fafafa;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 25px;
    font-weight: 700;
    max-width: 800px;
}

.about-hero p {
    font-size: 20px;
    line-height: 1.7;
    color: #444;
    max-width: 700px;
}

.about-content {
    display: flex;
    padding: 80px 60px;
    gap: 60px;
}

.about-text {
    flex: 1.2;
}

.about-text h2 {
    font-size: 34px;
    margin-bottom: 25px;
    font-weight: 700;
}

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

.about-sidebar {
    flex: 0.8;
    background: #f5f5f5;
    padding: 40px;
    border-radius: 6px;
    align-self: flex-start;
}

.about-sidebar h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-sidebar ul {
    list-style: none;
}

.about-sidebar li {
    padding: 12px 0;
    font-size: 17px;
    color: #555;
    border-bottom: 1px solid #e0e0e0;
}

.about-sidebar li:last-child {
    border-bottom: none;
}

.contact-page {
    display: flex;
    min-height: 70vh;
}

.contact-info {
    flex: 1;
    padding: 80px 60px;
    background: #2c2c2c;
    color: #ffffff;
}

.contact-info h1 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-info p {
    font-size: 18px;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #ffffff;
}

.contact-item p {
    font-size: 17px;
    color: #aaaaaa;
    margin-bottom: 5px;
}

.contact-visual {
    flex: 1;
    background: #e0e0e0;
}

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

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

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

.thanks-content h1 {
    font-size: 44px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #2c5aa0;
}

.thanks-content p {
    font-size: 19px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 30px;
}

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

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 30px;
    font-weight: 700;
}

.legal-page h2 {
    font-size: 26px;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: 700;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}

.legal-page ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 8px;
}

@media (max-width: 1024px) {
    .service-detail-item,
    .about-content,
    .contact-page {
        flex-direction: column;
    }

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

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

    .hero-content,
    .intro-content,
    .form-container {
        padding: 60px 30px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .services-overview,
    .trust-section {
        padding: 60px 30px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-content p {
        margin-right: 0;
    }

    .service-detail-item,
    .about-hero,
    .about-content,
    .contact-info,
    .thanks-container,
    .legal-page,
    .cta-section {
        padding: 60px 30px;
    }
}