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

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

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    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: #4a90e2;
    text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

.ad-notice {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 12px;
    border: 1px solid #bdc3c7;
    border-radius: 3px;
}

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

.main-nav a {
    font-size: 15px;
    font-weight: 500;
    color: #34495e;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #4a90e2;
}

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

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

.hero-left h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c3e50;
}

.hero-left p {
    font-size: 18px;
    line-height: 1.7;
    color: #576574;
    margin-bottom: 32px;
    max-width: 540px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #4a90e2;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #357abd;
    transform: translateY(-2px);
}

.hero-right {
    flex: 1;
    background: #dfe6e9;
}

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

.about-split {
    display: flex;
    min-height: 500px;
}

.about-image {
    flex: 1;
    background: #e8eef2;
}

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

.about-content {
    flex: 1;
    padding: 80px 60px;
    background: #ffffff;
}

.about-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #2c3e50;
}

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

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

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

.services-intro h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-intro p {
    font-size: 17px;
    color: #576574;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    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 ease, box-shadow 0.3s ease;
}

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

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

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 24px 24px 16px;
    color: #2c3e50;
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #576574;
    margin: 0 24px 20px;
}

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

.btn-select {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px;
    background: #34495e;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-select:hover {
    background: #2c3e50;
}

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

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

.form-left-info {
    flex: 1;
}

.form-left-info h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2c3e50;
}

.form-left-info p {
    font-size: 17px;
    line-height: 1.8;
    color: #576574;
}

.form-right {
    flex: 1;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid #dfe6e9;
    border-radius: 6px;
    background: #ffffff;
    color: #2c3e50;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #4a90e2;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #357abd;
}

.trust-section {
    padding: 80px 60px;
    background: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.trust-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
}

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

.footer {
    background: #1a1a1a;
    color: #b2bec3;
    padding: 60px 60px 30px;
}

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

.footer-col {
    flex: 1;
    min-width: 200px;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    color: #b2bec3;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #4a90e2;
}

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

.footer-bottom p {
    font-size: 13px;
    margin-bottom: 10px;
}

.footer-bottom .disclaimer {
    font-size: 12px;
    line-height: 1.6;
    color: #7f8c8d;
    max-width: 900px;
    margin: 20px auto 0;
}

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

.thanks-content {
    max-width: 600px;
    text-align: center;
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.thanks-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 24px;
}

.thanks-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #576574;
    margin-bottom: 32px;
}

.thanks-content .cta-primary {
    display: inline-block;
}

.legal-page {
    padding: 80px 60px;
    background: #ffffff;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #2c3e50;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #576574;
    margin-bottom: 20px;
}

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #576574;
    margin-bottom: 10px;
}

.contact-page {
    padding: 80px 60px;
    background: #f8f9fa;
}

.contact-split {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #2c3e50;
}

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

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

.contact-detail p {
    font-size: 16px;
    line-height: 1.8;
    color: #576574;
}

.contact-map {
    flex: 1;
    background: #e8eef2;
    border-radius: 8px;
    min-height: 400px;
}

@media (max-width: 1024px) {
    .header-split {
        padding: 20px 40px;
    }

    .hero-split,
    .about-split {
        flex-direction: column;
    }

    .hero-left,
    .about-content {
        padding: 60px 40px;
    }

    .services-section,
    .form-section,
    .trust-section {
        padding: 60px 40px;
    }

    .form-container-split,
    .contact-split {
        flex-direction: column;
        gap: 40px;
    }

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

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

    .header-right {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .main-nav {
        width: 100%;
        justify-content: space-around;
    }

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

    .services-section,
    .form-section,
    .trust-section,
    .legal-page,
    .contact-page {
        padding: 40px 20px;
    }

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

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