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

:root {
    --primary-color: #2D3748;
    --secondary-color: #4299E1;
    --accent-color: #F6AD55;
    --text-dark: #1A202C;
    --text-light: #718096;
    --bg-light: #F7FAFC;
    --bg-white: #FFFFFF;
    --border-color: #E2E8F0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

nav {
    background-color: var(--bg-white);
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    text-transform: lowercase;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

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

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

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

.split-left,
.split-right {
    flex: 1;
    padding: 60px;
}

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

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

.hero-section {
    display: flex;
    min-height: 700px;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

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

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, var(--primary-color) 0%, transparent 100%);
}

h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
    color: var(--primary-color);
}

h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-color);
}

p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.hero-content p {
    color: rgba(255,255,255,0.9);
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: #3182CE;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66,153,225,0.3);
}

.cta-button-alt {
    background-color: var(--accent-color);
}

.cta-button-alt:hover {
    background-color: #ED8936;
}

.service-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    display: flex;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.service-image {
    width: 280px;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-light);
}

.service-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.service-description {
    margin-bottom: 25px;
    flex-grow: 1;
}

.form-section {
    background-color: var(--bg-light);
    padding: 80px 30px;
    margin: 80px 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

.image-text-section {
    display: flex;
    margin: 80px 0;
    gap: 0;
}

.image-half {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
    background-color: var(--bg-light);
}

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

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

.footer {
    background-color: var(--primary-color);
    color: rgba(255,255,255,0.9);
    padding: 60px 30px 30px;
}

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

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

.footer h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 25px 30px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
}

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

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

.cookie-text {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.cookie-accept {
    background-color: var(--secondary-color);
    color: white;
}

.cookie-accept:hover {
    background-color: #3182CE;
}

.cookie-reject {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

.disclaimer {
    background-color: #FFF9F5;
    border-left: 4px solid var(--accent-color);
    padding: 30px;
    margin: 60px 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-info {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    margin-top: 40px;
}

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

.info-item {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

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

.info-value {
    color: var(--text-light);
}

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 80px 60px;
    text-align: center;
    background: var(--bg-light);
    border-radius: 8px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 40px;
    color: white;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
}

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 35px;
    margin-bottom: 15px;
}

.legal-content p {
    margin-bottom: 20px;
}

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

.legal-content li {
    margin-bottom: 12px;
    color: var(--text-light);
    line-height: 1.8;
}

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

    .service-card {
        flex-direction: column;
    }

    .service-image {
        width: 100%;
        height: 250px;
    }

    .nav-links {
        gap: 20px;
    }

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

    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 32px;
    }
}
