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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

.main-nav {
    background-color: #1a2332;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}

.ad-disclosure {
    color: #95a5a6;
    font-size: 0.85rem;
    border-left: 1px solid #34495e;
    padding-left: 2rem;
}

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

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

.split-left {
    background-color: #ecf0f1;
    padding: 4rem 3rem;
}

.split-right {
    background-color: #34495e;
    position: relative;
    overflow: hidden;
}

.split-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #34495e;
}

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #2980b9;
}

.btn-secondary {
    background-color: #95a5a6;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
}

.split-section {
    display: flex;
    min-height: 70vh;
}

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

.content-block {
    max-width: 500px;
}

.content-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.content-block p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.services-overview {
    padding: 5rem 0;
    background-color: #ffffff;
}

.services-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a2332;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 1.5rem);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.5rem;
    padding: 1.5rem 1.5rem 0.5rem;
    color: #1a2332;
}

.service-card p {
    padding: 0 1.5rem 1rem;
    color: #34495e;
}

.service-card .price {
    display: block;
    padding: 1rem 1.5rem;
    background-color: #ecf0f1;
    font-size: 1.3rem;
    font-weight: bold;
    color: #3498db;
}

.form-section {
    padding: 5rem 0;
    background-color: #ecf0f1;
}

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

.form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.form-wrapper > p {
    margin-bottom: 2rem;
    color: #34495e;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: #34495e;
    font-weight: 500;
}

.form-group input,
.form-group select {
    padding: 0.8rem;
    border: 1px solid #bdc3c7;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
}

.disclaimer-section {
    padding: 3rem 0;
    background-color: #f8f9fa;
}

.disclaimer {
    font-size: 0.9rem;
    color: #7f8c8d;
    line-height: 1.6;
    text-align: center;
}

.main-footer {
    background-color: #1a2332;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 1rem;
}

.footer-column p {
    color: #95a5a6;
}

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

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

.footer-column ul li a {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 20px 0;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a2332;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 2000;
    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: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ecf0f1;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
    padding: 3rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

.thanks-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.page-header {
    background-color: #1a2332;
    color: #ffffff;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
}

.page-content {
    padding: 4rem 0;
}

.page-content h2 {
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.page-content h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

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

.page-content ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

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

.contact-info {
    background-color: #ecf0f1;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.contact-info h3 {
    margin-top: 0;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

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

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

    .split-right img {
        height: 300px;
    }

    .service-card {
        width: 100%;
    }

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

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

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

    .ad-disclosure {
        border-left: none;
        padding-left: 0;
        width: 100%;
        text-align: center;
    }
}