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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    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: 1rem;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept, .btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    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);
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.nav-right {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.ad-notice {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.25rem 0.75rem;
    border: 1px solid #bdc3c7;
    border-radius: 3px;
}

.nav-right a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero-split {
    display: flex;
    min-height: 90vh;
}

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

.hero-left {
    display: flex;
    align-items: center;
    padding: 4rem;
    background: #f8f9fa;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #546e7a;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52,152,219,0.3);
}

.hero-right {
    background-color: #ecf0f1;
}

.intro-split {
    display: flex;
    min-height: 70vh;
}

.intro-image, .intro-text {
    flex: 1;
}

.intro-image {
    background-color: #bdc3c7;
}

.intro-text {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.intro-text p {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    color: #546e7a;
}

.services-main {
    padding: 5rem 4rem;
    background: #ffffff;
}

.services-main h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.service-image {
    height: 220px;
    background-color: #ecf0f1;
}

.service-info {
    padding: 1.75rem;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-info p {
    color: #546e7a;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.25rem;
}

.btn-select {
    width: 100%;
    padding: 0.875rem;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-split {
    display: flex;
    min-height: 80vh;
}

.form-visual {
    flex: 1;
    background-color: #95a5a6;
}

.form-container {
    flex: 1;
    padding: 4rem;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-container h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.selected-display {
    background: #e8f5e9;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    color: #27ae60;
    font-weight: 600;
    display: none;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.trust-split {
    display: flex;
    min-height: 70vh;
}

.trust-content {
    flex: 1;
    padding: 4rem;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-content h2 {
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
    color: #2c3e50;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trust-item h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.trust-item p {
    color: #546e7a;
    font-size: 1rem;
}

.trust-image {
    flex: 1;
    background-color: #bdc3c7;
}

.disclaimer {
    padding: 3rem 4rem;
    background: #ecf0f1;
}

.disclaimer p {
    max-width: 1200px;
    margin: 0 auto;
    color: #546e7a;
    font-size: 0.9rem;
    line-height: 1.7;
}

footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 4rem 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: #ffffff;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 0.9rem;
}

.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

.thanks-content p {
    font-size: 1.15rem;
    color: #546e7a;
    margin-bottom: 2rem;
}

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

.contact-info {
    flex: 1;
    padding: 4rem;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.contact-item p {
    color: #546e7a;
    font-size: 1.05rem;
}

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

.about-split {
    display: flex;
    min-height: 70vh;
}

.about-image {
    flex: 1;
    background-color: #95a5a6;
}

.about-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-content p {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    color: #546e7a;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.legal-container h2 {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-container p {
    margin-bottom: 1rem;
    color: #546e7a;
    line-height: 1.7;
}

.legal-container ul {
    margin-bottom: 1rem;
    margin-left: 2rem;
    color: #546e7a;
}

.legal-container ul li {
    margin-bottom: 0.5rem;
}

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

    .hero-left, .hero-right, .intro-image, .intro-text, .form-visual, .form-container, .trust-content, .trust-image, .contact-info, .contact-visual, .about-image, .about-content {
        min-height: 50vh;
    }

    .nav-split {
        padding: 1rem 2rem;
    }

    .nav-right {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .ad-notice {
        width: 100%;
        text-align: center;
    }

    .service-card {
        flex: 1 1 calc(50% - 2rem);
    }

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

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 2rem;
    }

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

    .nav-split {
        flex-direction: column;
        gap: 1rem;
    }
}