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

:root {
    --primary: #1a4d7a;
    --secondary: #2c7bb6;
    --accent: #e67e22;
    --dark: #1a1a2e;
    --light: #f4f6f9;
    --text: #333;
    --border: #ddd;
}

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

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

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

.header-top {
    background: var(--light);
    padding: 8px 0;
    font-size: 0.85rem;
    color: #666;
}

.ad-notice {
    text-align: center;
    font-style: italic;
}

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;
    align-items: center;
}

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

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

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

.split-hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem;
    background: var(--light);
}

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

.split-hero-right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,77,122,0.3), transparent);
}

.hero-badge {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.split-hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.split-hero p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
}

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

.cta-primary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(44,123,182,0.3);
}

.split-section {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

.split-left,
.split-right {
    flex: 1;
    padding: 4rem 3rem;
}

.split-left {
    background: #fff;
}

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

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

.section-label {
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.split-section h2 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.split-section p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.2rem;
}

.feature-list {
    list-style: none;
    margin-top: 2rem;
}

.feature-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2rem;
}

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

.service-card {
    flex: 1;
    min-width: 300px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

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

.service-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: var(--light);
}

.service-content {
    padding: 2rem;
}

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

.service-content p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.price-tag {
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1rem;
}

.price-note {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 1.5rem;
}

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

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

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

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

.full-width-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.9);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

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

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

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

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

footer {
    background: var(--dark);
    color: #fff;
    padding: 3rem 0 1rem;
}

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

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

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

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

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

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26,26,46,0.95);
    color: #fff;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

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

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

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

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

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

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

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

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

.page-header {
    background: var(--light);
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.15rem;
    color: #666;
}

.content-section {
    padding: 4rem 2rem;
}

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

.content-section h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.content-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.content-section ul,
.content-section ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-section li {
    margin-bottom: 0.5rem;
}

.contact-info {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    margin-bottom: 2rem;
}

.contact-info h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.contact-info strong {
    min-width: 150px;
    color: var(--dark);
}

.thanks-container {
    max-width: 700px;
    margin: 5rem auto;
    padding: 4rem;
    text-align: center;
    background: var(--light);
    border-radius: 8px;
}

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

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

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

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

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

.image-split-left {
    background-size: cover;
    background-position: center;
    min-height: 500px;
    background-color: var(--light);
}

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

.references-section {
    background: var(--light);
    padding: 3rem 2rem;
    margin-top: 3rem;
}

.references-section h3 {
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.references-list {
    list-style: none;
    counter-reset: ref-counter;
}

.references-list li {
    counter-increment: ref-counter;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.references-list li::before {
    content: "[" counter(ref-counter) "]";
    position: absolute;
    left: 0;
    font-weight: 700;
    color: var(--primary);
}

.references-list a {
    color: var(--secondary);
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.disclaimer {
    background: #fff3e0;
    border-left: 4px solid var(--accent);
    padding: 1.5rem;
    margin: 2rem 0;
}

.disclaimer h4 {
    color: var(--dark);
    margin-bottom: 0.8rem;
}

.disclaimer p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

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

    .split-hero-right {
        min-height: 300px;
    }

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

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

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

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

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

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

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

    .image-split-left {
        min-height: 300px;
    }
}
