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

:root {
    --primary: #1a4d7a;
    --secondary: #c7353f;
    --accent: #f4a259;
    --dark: #1f2937;
    --light: #f8fafc;
    --gray: #6b7280;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
}

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

header {
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

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

.hero-content,
.hero-visual {
    flex: 1;
    padding: 3rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 520px;
}

.hero-visual {
    background: linear-gradient(135deg, var(--primary) 0%, #2563eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

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

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

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(199, 53, 63, 0.3);
}

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

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

.section-split {
    display: flex;
    align-items: stretch;
}

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

.split-content,
.split-visual {
    flex: 1;
}

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

.split-visual {
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

.split-content h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.split-content h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.split-content p {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.split-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.split-content ul li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: var(--dark);
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    padding: 4rem 0;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 2.5rem;
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 10px 30px var(--shadow);
    transform: translateY(-5px);
}

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

.service-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.price {
    font-size: 2.2rem;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.price-note {
    font-size: 0.9rem;
    color: var(--gray);
    font-style: italic;
}

.full-width-section {
    padding: 6rem 0;
    background: var(--light);
}

.full-width-section.dark {
    background: var(--dark);
    color: var(--white);
}

.full-width-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--primary);
}

.full-width-section.dark h2 {
    color: var(--white);
}

.features-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.feature-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
}

.feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.feature-item p {
    color: var(--gray);
    line-height: 1.7;
}

.form-section {
    padding: 5rem 3rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 40px var(--shadow);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--dark);
    font-size: 1.05rem;
}

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

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

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    padding: 1.2rem 2rem;
    background: var(--secondary);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(199, 53, 63, 0.4);
    transition: transform 0.3s;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 1.5rem;
    display: none;
    z-index: 10000;
    box-shadow: 0 -4px 20px var(--shadow);
}

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

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

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

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

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

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

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

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

.btn-reject:hover {
    background: var(--white);
    color: var(--dark);
}

footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

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

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

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

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

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

.about-intro {
    padding: 4rem 3rem;
    background: linear-gradient(135deg, var(--light) 0%, #fff 100%);
}

.about-intro h1 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-intro p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 900px;
    margin: 0 auto 2rem;
    text-align: center;
    line-height: 1.8;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 3rem 0;
}

.team-member {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 2rem;
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    margin: 0 auto 1.5rem;
}

.team-member h3 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.team-member .role {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: var(--gray);
    line-height: 1.6;
}

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

.contact-info,
.contact-map {
    flex: 1;
}

.contact-info {
    padding: 4rem;
    background: var(--light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h1 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

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

.contact-detail h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-detail p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.7;
}

.contact-map {
    background: linear-gradient(135deg, var(--primary) 0%, #2563eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.legal-page {
    padding: 4rem 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-page h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-page p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page ul li {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--light) 0%, #fff 100%);
}

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

.thanks-content h1 {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.checkmark {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--secondary);
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

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

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

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

    .hero-content p {
        font-size: 1.1rem;
    }

    .split-content {
        padding: 3rem 2rem;
    }

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

    .sticky-cta {
        bottom: 15px;
        right: 15px;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    .services-grid {
        gap: 1.5rem;
    }

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }
}
