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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

header {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5f8d 100%);
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.ad-notice {
    font-size: 0.75rem;
    opacity: 0.85;
    padding: 4px 10px;
    background: rgba(255,255,255,0.15);
    border-radius: 3px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.8;
}

.split-hero {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.split-left,
.split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.split-left {
    background: #f8f9fa;
}

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

.split-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}

.hero-content {
    max-width: 500px;
    z-index: 1;
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1e3a5f;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: #555;
}

.cta-primary {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.cta-secondary {
    display: inline-block;
    background: #2c5f8d;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 95, 141, 0.4);
}

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

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

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

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

.split-content.bg-light {
    background: #ecf0f1;
}

.split-content.bg-dark {
    background: #1e3a5f;
    color: white;
}

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

.section-split h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    line-height: 1.3;
}

.section-split p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 80px 0;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

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

.service-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #ddd;
}

.service-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-body h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #1e3a5f;
}

.service-body p {
    margin-bottom: 20px;
    color: #666;
    flex-grow: 1;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 20px;
}

.service-select {
    background: #2c5f8d;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
    width: 100%;
    font-size: 1rem;
}

.service-select:hover {
    background: #1e3a5f;
}

.service-select.selected {
    background: #27ae60;
}

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

.full-width-section.bg-accent {
    background: linear-gradient(135deg, #2c5f8d 0%, #1e3a5f 100%);
    color: white;
}

.full-width-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.full-width-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.form-section {
    background: #f8f9fa;
    padding: 80px 20px;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #1e3a5f;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    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: #2c5f8d;
}

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

.form-submit {
    background: #e74c3c;
    color: white;
    padding: 14px 40px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s, transform 0.3s;
}

.form-submit:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.form-submit:disabled {
    background: #95a5a6;
    cursor: not-allowed;
    transform: none;
}

.contact-info {
    background: white;
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #1e3a5f;
}

.info-item {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 5px;
}

.info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c5f8d;
}

.info-item p {
    color: #555;
    font-size: 1.05rem;
}

footer {
    background: #1e3a5f;
    color: white;
    padding: 60px 20px 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 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 25px;
    text-align: center;
    color: #bdc3c7;
}

.disclaimer {
    background: #f8f9fa;
    padding: 40px 20px;
    border-top: 3px solid #e74c3c;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

.disclaimer-content h3 {
    color: #1e3a5f;
    margin-bottom: 15px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 25px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

.cookie-banner.active {
    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;
}

.cookie-text a {
    color: #3498db;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.cookie-accept {
    background: #27ae60;
    color: white;
}

.cookie-accept:hover {
    background: #229954;
}

.cookie-reject {
    background: #7f8c8d;
    color: white;
}

.cookie-reject:hover {
    background: #5d6d7e;
}

.legal-page {
    padding: 80px 20px;
    background: white;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1e3a5f;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c5f8d;
}

.legal-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.legal-content ul {
    margin-bottom: 20px;
    margin-left: 30px;
}

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

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ecf0f1 0%, #ffffff 100%);
    padding: 60px 20px;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
    background: white;
    padding: 60px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.thanks-content h1 {
    font-size: 2.8rem;
    color: #27ae60;
    margin-bottom: 25px;
}

.thanks-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.selected-service-display {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.selected-service-display h3 {
    color: #2c5f8d;
    margin-bottom: 10px;
}

.selected-service-display p {
    color: #333;
    font-weight: 600;
    font-size: 1.3rem;
}

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

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

    nav ul {
        gap: 15px;
    }

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

    .services-grid {
        flex-direction: column;
    }

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

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

    .form-container {
        padding: 30px 20px;
    }

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