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

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

header {
    background: linear-gradient(135deg, #1a2332 0%, #2d4059 100%);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -0.5px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

nav a {
    color: #e8eef2;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

nav a:hover {
    color: #64b5f6;
}

.ad-notice {
    background: rgba(255,255,255,0.1);
    padding: 0.4rem 0.9rem;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #b3c5d4;
    border: 1px solid rgba(255,255,255,0.15);
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 4rem 3rem 4rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e3f2fd;
}

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

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.8rem;
    color: #1a2332;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: #5a6c7d;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: #1976d2;
    color: #ffffff;
    padding: 1.1rem 2.8rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
}

.cta-button:hover {
    background: #1565c0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(25, 118, 210, 0.4);
}

.section {
    padding: 6rem 0;
}

.section-alt {
    background: #f8fafb;
}

.section-dark {
    background: #1a2332;
    color: #ffffff;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1a2332;
    text-align: center;
}

.section-dark .section-title {
    color: #ffffff;
}

.split-content {
    display: flex;
    gap: 5rem;
    align-items: center;
}

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

.split-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    background-color: #e3f2fd;
}

.split-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.text-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.section-dark .text-content h3 {
    color: #ffffff;
}

.text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #4a5568;
}

.section-dark .text-content p {
    color: #cbd5e0;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

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

.service-image {
    width: 100%;
    height: 240px;
    background-color: #e3f2fd;
}

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

.service-content {
    padding: 2rem;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.service-card p {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1976d2;
    margin-bottom: 1.2rem;
}

.select-service-btn {
    display: block;
    width: 100%;
    background: #1976d2;
    color: #ffffff;
    padding: 0.9rem;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.select-service-btn:hover {
    background: #1565c0;
}

.form-container {
    max-width: 600px;
    margin: 3rem auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    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: #1976d2;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

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

.submit-btn:hover {
    background: #1565c0;
}

.contact-info {
    background: #f8fafb;
    padding: 2.5rem;
    border-radius: 8px;
    margin-top: 3rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.contact-item {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.3rem;
    color: #1a2332;
}

.contact-item span {
    color: #5a6c7d;
}

footer {
    background: #1a2332;
    color: #cbd5e0;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
}

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

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: #64b5f6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: #8a96a3;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a2332;
    color: #ffffff;
    padding: 1.5rem 2rem;
    display: none;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner.active {
    display: flex;
}

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

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.cookie-accept {
    background: #1976d2;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #1565c0;
}

.cookie-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.3);
}

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

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a2332;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.legal-content p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    color: #4a5568;
}

.legal-content ul {
    margin-bottom: 1.2rem;
    margin-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.thanks-container {
    text-align: center;
    max-width: 700px;
    margin: 6rem auto;
    padding: 4rem 2rem;
}

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.thanks-container p {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.selected-service {
    background: #e3f2fd;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-size: 1.1rem;
}

.inline-cta {
    background: #e3f2fd;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    margin: 4rem 0;
}

.inline-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.inline-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    color: #4a5568;
}

.disclaimer {
    background: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    margin: 3rem 0;
    font-size: 0.9rem;
    color: #5a4a00;
    line-height: 1.6;
}

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left {
        padding: 3rem 2rem;
    }

    .hero-right {
        min-height: 400px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .split-content {
        flex-direction: column;
        gap: 3rem;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        flex-wrap: wrap;
        gap: 1rem;
    }
}
