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

:root {
    --primary: #1a4d7a;
    --secondary: #2c7ab5;
    --accent: #e8b448;
    --dark: #0f2537;
    --light: #f4f7fa;
    --white: #ffffff;
    --text: #333333;
    --border: #d1dce5;
}

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

header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

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

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

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

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

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

.hero-left {
    flex: 1;
    background: var(--primary);
    color: var(--white);
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-right {
    flex: 1;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-right::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><rect fill="%23ffffff" opacity="0.05" x="100" y="100" width="200" height="300" rx="10"/><rect fill="%23ffffff" opacity="0.03" x="350" y="50" width="250" height="200" rx="10"/><rect fill="%23ffffff" opacity="0.07" x="450" y="300" width="180" height="250" rx="10"/></svg>');
    background-size: cover;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 180, 72, 0.3);
}

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

.split-left,
.split-right {
    flex: 1;
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-left {
    background: var(--light);
}

.split-right {
    background: var(--white);
}

.reverse .split-left {
    background: var(--white);
}

.reverse .split-right {
    background: var(--light);
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #555;
}

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

.grid-header {
    text-align: center;
    margin-bottom: 4rem;
}

.grid-header h2 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(50% - 1rem);
    background: var(--white);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: 8px;
    transition: box-shadow 0.3s, transform 0.3s;
}

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

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

.service-card p {
    margin-bottom: 1.5rem;
    color: #666;
}

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

.cta-secondary {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

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

.full-width-cta {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
}

.full-width-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.full-width-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.form-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

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

form {
    background: var(--light);
    padding: 3rem;
    border-radius: 8px;
}

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

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

input,
select,
textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

button[type="submit"] {
    background: var(--accent);
    color: var(--dark);
    padding: 1rem 3rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s;
}

button[type="submit"]:hover {
    transform: scale(1.05);
}

.info-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.info-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    background: var(--white);
    padding: 2rem;
    border-left: 4px solid var(--secondary);
}

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

.info-card p {
    color: #666;
}

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

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

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

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

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1400px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 1.5rem 2rem;
    display: none;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 2000;
}

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

.cookie-text {
    flex: 1;
    margin-right: 2rem;
}

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

.cookie-accept,
.cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.cookie-accept {
    background: var(--accent);
    color: var(--dark);
}

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

.cookie-accept:hover,
.cookie-reject:hover {
    opacity: 0.8;
}

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

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

.thanks-container p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

.about-intro {
    max-width: 1000px;
    margin: 0 auto;
    padding: 5rem 2rem;
    text-align: center;
}

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

.about-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

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

.contact-split {
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

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

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

.contact-item h3 {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.contact-item p {
    font-size: 1.1rem;
    color: #666;
}

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

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

.legal-container h2 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-container p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
}

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

.legal-container li {
    margin-bottom: 0.5rem;
    color: #555;
}

@media (max-width: 968px) {
    .split-hero,
    .split-section,
    .contact-split {
        flex-direction: column;
    }

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

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

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

    nav ul {
        gap: 1rem;
    }

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

    .cookie-text {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 640px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .grid-header h2 {
        font-size: 2rem;
    }
}
