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

:root {
    --primary: #003d5c;
    --secondary: #00a8e8;
    --accent: #ffa500;
    --dark: #001f3f;
    --light: #f4f8fb;
    --text: #2c3e50;
    --white: #ffffff;
}

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

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

header {
    background: var(--primary);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-section {
    flex: 1;
    padding: 20px 40px;
    background: var(--dark);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    text-transform: lowercase;
}

nav {
    flex: 2;
    padding: 20px 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    justify-content: flex-end;
}

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

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
}

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

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--light);
}

.hero-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-visual::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,61,92,0.7), rgba(0,168,232,0.3));
}

.hero-content h1 {
    font-size: 3.2rem;
    color: var(--dark);
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 800;
}

.hero-content .subtitle {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 35px;
    line-height: 1.5;
}

.cta-primary {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    align-self: flex-start;
    font-size: 1.05rem;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255,165,0,0.4);
}

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

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

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

.split-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
}

.split-text h2 {
    font-size: 2.6rem;
    color: var(--dark);
    margin-bottom: 30px;
    font-weight: 700;
}

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

.split-text ul {
    list-style: none;
    margin: 25px 0;
}

.split-text ul li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 1.05rem;
}

.split-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.2rem;
}

.bg-dark {
    background: var(--dark);
}

.bg-dark h2,
.bg-dark p,
.bg-dark li {
    color: var(--white);
}

.bg-light {
    background: var(--light);
}

.bg-primary {
    background: var(--primary);
}

.bg-primary h2,
.bg-primary p,
.bg-primary li {
    color: var(--white);
}

.services-grid {
    padding: 100px 60px;
    background: var(--white);
}

.services-grid h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark);
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    background: var(--light);
    padding: 40px 30px;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,61,92,0.15);
}

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

.service-card p {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

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

.service-features li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text);
}

.cta-secondary {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
    margin-top: 15px;
}

.cta-secondary:hover {
    background: var(--primary);
}

.form-section {
    display: flex;
    min-height: 700px;
}

.form-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.form-container {
    flex: 1;
    padding: 80px 60px;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-container h2 {
    font-size: 2.4rem;
    color: var(--white);
    margin-bottom: 15px;
}

.form-container .form-subtitle {
    color: var(--light);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 5px;
    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(--accent);
}

.form-group select option {
    background: var(--dark);
    color: var(--white);
}

.btn-submit {
    padding: 18px 40px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,165,0,0.4);
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent);
    color: var(--white);
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 6px 25px rgba(255,165,0,0.5);
    z-index: 999;
    transition: transform 0.3s;
}

.sticky-cta:hover {
    transform: scale(1.08);
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

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

.footer-section p,
.footer-section a {
    color: var(--light);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    line-height: 1.8;
}

.footer-section a:hover {
    color: var(--accent);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 10000;
    gap: 30px;
}

.cookie-banner.hidden {
    display: none;
}

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

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

.btn-cookie {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-cookie:hover {
    transform: translateY(-2px);
}

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

.btn-reject {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    padding: 60px 40px;
}

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

.thanks-content h1 {
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 25px;
}

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

.thanks-content .service-selected {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 5px solid var(--accent);
}

.policy-page {
    padding: 80px 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.policy-page h1 {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 30px;
}

.policy-page h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-top: 40px;
    margin-bottom: 20px;
}

.policy-page p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.policy-page ul {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

.policy-page ul li {
    margin-bottom: 10px;
}

.contact-page {
    padding: 80px 40px;
}

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

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 30px;
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.info-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
}

.about-hero {
    padding: 100px 60px;
    background: var(--light);
    text-align: center;
}

.about-hero h1 {
    font-size: 3.2rem;
    color: var(--dark);
    margin-bottom: 25px;
}

.about-hero p {
    font-size: 1.3rem;
    color: var(--text);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

@media (max-width: 968px) {
    .header-split {
        flex-direction: column;
    }

    .logo-section {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-toggle {
        display: block;
    }

    nav {
        width: 100%;
        display: none;
    }

    nav.active {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
    }

    .nav-links li {
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .nav-links a {
        display: block;
        padding: 15px 0;
    }

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

    .hero-visual,
    .split-image,
    .form-visual {
        min-height: 400px;
    }

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

    .split-text h2 {
        font-size: 2rem;
    }

    .hero-content,
    .split-text,
    .form-container,
    .services-grid {
        padding: 50px 30px;
    }

    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-buttons {
        justify-content: stretch;
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 15px;
        right: 15px;
        padding: 15px 25px;
        font-size: 0.9rem;
    }
}
