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

:root {
    --primary: #0a4d68;
    --secondary: #088395;
    --accent: #05bfdb;
    --dark: #1a1a2e;
    --light: #f5f7fa;
    --text: #2d3436;
    --border: #e1e8ed;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden;
}

.nav-container {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 45px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--secondary);
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 4px 12px;
    background: #f0f0f0;
    border-radius: 4px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: all 0.3s;
}

.split-hero {
    display: flex;
    min-height: 100vh;
    margin-top: 80px;
}

.split-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px 80px 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef3 100%);
}

.split-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 30px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 40px;
    max-width: 550px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--secondary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-primary:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(8, 131, 149, 0.3);
}

.split-section {
    display: flex;
    min-height: 600px;
}

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

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

.split-image {
    flex: 1;
    position: relative;
    background-color: #e8eef3;
}

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

.split-content h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 30px;
    font-weight: 700;
}

.split-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 80px;
}

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

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

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #e8eef3;
}

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

.service-content {
    padding: 35px;
}

.service-content h3 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-content p {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 25px;
    line-height: 1.7;
}

.price {
    font-size: 2rem;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 20px;
}

.form-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 100px 80px;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.form-container h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    text-align: center;
}

.form-container p {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text);
    font-size: 1.1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border);
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

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

.contact-info {
    background: var(--light);
    padding: 100px 80px;
}

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

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item h3 {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.6;
}

.map-container {
    flex: 1;
    min-height: 400px;
    background-color: #e8eef3;
    border-radius: 8px;
    overflow: hidden;
}

.footer {
    background: var(--dark);
    color: white;
    padding: 60px 80px 30px;
}

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

.footer-section {
    flex: 1;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--accent);
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #999;
}

.disclaimer {
    background: #fff8e1;
    padding: 30px 80px;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    border-top: 2px solid #ffd54f;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 25px 40px;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: space-between;
}

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

.cookie-text {
    flex: 1;
    margin-right: 30px;
}

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

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

.btn-accept {
    background: var(--secondary);
    color: white;
}

.btn-accept:hover {
    background: var(--primary);
}

.btn-reject {
    background: var(--border);
    color: var(--text);
}

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

.legal-content {
    max-width: 900px;
    margin: 120px auto 60px;
    padding: 40px;
}

.legal-content h1 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.legal-content ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.thanks-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 40px;
}

.thanks-box {
    background: white;
    padding: 80px 60px;
    border-radius: 12px;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.thanks-box h1 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.thanks-box p {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 40px;
    line-height: 1.7;
}

.checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #4caf50;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

@media (max-width: 1024px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 40px;
        transition: left 0.3s;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

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

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

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .contact-grid {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-wrapper {
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .split-left,
    .split-content,
    .services-grid,
    .form-section,
    .contact-info,
    .footer {
        padding: 40px 20px;
    }

    .service-card {
        min-width: 100%;
    }

    .form-container {
        padding: 40px 30px;
    }

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

    .cookie-text {
        margin-right: 0;
    }

    .legal-content {
        padding: 20px;
        margin-top: 100px;
    }
}
