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

:root {
    --primary: #1a4d7a;
    --secondary: #2c6ba0;
    --accent: #e8903e;
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --text: #333;
    --border: #ddd;
}

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

.ad-disclosure {
    background: #fff3cd;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #856404;
    border-bottom: 1px solid #ffeaa7;
}

.header-main {
    background: var(--primary);
    color: #fff;
    padding: 0;
}

.header-top {
    background: var(--dark);
    padding: 10px 0;
}

.header-top .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-top a {
    color: #fff;
    text-decoration: none;
    margin-left: 30px;
    font-size: 14px;
    transition: color 0.3s;
}

.header-top a:hover {
    color: var(--accent);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

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

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
}

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

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

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

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

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

.section-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 15px;
    font-weight: 600;
}

h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--dark);
    font-weight: 700;
}

h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--dark);
    font-weight: 700;
}

h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark);
    font-weight: 600;
}

p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 15px;
}

.btn:hover {
    background: #d47d2a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 144, 62, 0.4);
}

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

.btn-secondary:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 77, 122, 0.3);
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 50px 0;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.card-content {
    padding: 30px;
}

.card-content h3 {
    margin-bottom: 12px;
}

.card-content p {
    color: #666;
    font-size: 15px;
    margin-bottom: 20px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin: 15px 0;
}

.price-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.full-width-section {
    padding: 80px 20px;
    text-align: center;
}

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

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

.bg-dark h2,
.bg-dark h3 {
    color: #fff;
}

.stats-row {
    display: flex;
    justify-content: space-around;
    max-width: 900px;
    margin: 50px auto;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 52px;
    font-weight: 700;
    color: var(--accent);
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #666;
}

.form-section {
    background: var(--light);
    padding: 80px 20px;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 15px;
    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 {
    min-height: 120px;
    resize: vertical;
}

.services-selection {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-option {
    padding: 20px;
    border: 2px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.service-option:hover {
    border-color: var(--primary);
    background: #f8fbff;
}

.service-option.selected {
    border-color: var(--primary);
    background: #e8f4ff;
}

.service-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.service-option-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-option-title {
    font-weight: 600;
    font-size: 16px;
    color: var(--dark);
}

.service-option-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.footer {
    background: var(--dark);
    color: #fff;
    padding: 60px 20px 30px;
}

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

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

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col p,
.footer-col ul {
    font-size: 14px;
    line-height: 1.8;
    color: #ccc;
}

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #444;
    text-align: center;
    color: #999;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 25px;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-text p {
    margin-bottom: 10px;
    font-size: 14px;
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
}

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

.cookie-buttons .btn {
    padding: 10px 24px;
    font-size: 14px;
}

.testimonials {
    display: flex;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark);
}

.testimonial-role {
    font-size: 14px;
    color: #777;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin: 40px 0;
}

.feature-item {
    flex: 1;
    min-width: 250px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    flex-shrink: 0;
}

.feature-text h4 {
    margin-bottom: 8px;
    font-size: 18px;
}

.feature-text p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.content-section h1 {
    margin-bottom: 30px;
}

.content-section h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 28px;
}

.content-section h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 20px;
}

.content-section ul,
.content-section ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

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

.contact-info {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.contact-info h3 {
    margin-bottom: 20px;
}

.info-item {
    margin-bottom: 20px;
}

.info-label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.info-value {
    color: #666;
}

.disclaimer {
    background: #fff9e6;
    border-left: 4px solid var(--accent);
    padding: 25px;
    margin: 40px 0;
    border-radius: 4px;
}

.disclaimer p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.disclaimer p:last-child {
    margin-bottom: 0;
}

.thanks-message {
    text-align: center;
    padding: 100px 20px;
    max-width: 800px;
    margin: 0 auto;
}

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

.thanks-message h1 {
    color: #4caf50;
    margin-bottom: 20px;
}

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

.split-content ul li {
    padding-left: 25px;
    margin-bottom: 12px;
    position: relative;
}

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

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

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

    .split-content {
        padding: 40px 20px;
    }

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

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }

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

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