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

:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #0f3460;
    --highlight: #e94560;
    --light: #f8f9fa;
    --text: #2d3436;
    --border: #dfe6e9;
}

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

img {
    object-fit: cover;
}

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

header {
    background: var(--primary);
    padding: 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;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

nav a:hover {
    color: var(--highlight);
}

.hero-split {
    display: flex;
    min-height: 85vh;
    background: white;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

.hero-right {
    flex: 1;
    background-color: #34495e;
    background-size: cover;
    background-position: center;
}

.hero-left h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-left p {
    font-size: 19px;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 520px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--highlight);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(233, 69, 96, 0.4);
}

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

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

.split-left {
    background: white;
}

.split-right {
    background-color: #7f8c8d;
    background-size: cover;
    background-position: center;
}

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

.split-section h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--primary);
    font-weight: 700;
}

.split-section p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

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

.split-section li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
}

.split-section li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--highlight);
    font-weight: bold;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 50%;
    display: flex;
    min-height: 450px;
    border: 1px solid var(--border);
}

.service-content {
    flex: 1;
    padding: 50px 45px;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-image {
    flex: 1;
    background-color: #95a5a6;
    background-size: cover;
    background-position: center;
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-card h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: var(--primary);
}

.service-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.service-cta {
    padding: 12px 28px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    font-weight: 600;
    transition: background 0.3s;
    align-self: flex-start;
}

.service-cta:hover {
    background: var(--primary);
}

.form-section {
    max-width: 1400px;
    margin: 80px auto;
    display: flex;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-left {
    flex: 1;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    padding: 60px 50px;
    color: white;
}

.form-right {
    flex: 1;
    background: white;
    padding: 60px 50px;
}

.form-left h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.form-left p {
    font-size: 17px;
    opacity: 0.9;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid var(--border);
    border-radius: 5px;
    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(--accent);
}

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

footer {
    background: var(--primary);
    color: white;
    padding: 60px 40px 30px;
}

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

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--highlight);
}

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

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

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

.footer-section a:hover {
    color: white;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary);
    color: white;
    padding: 25px;
    display: none;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

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

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

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

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

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

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

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

.cookie-btn:hover {
    opacity: 0.8;
}

.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 100px 40px 60px;
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-content {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 40px;
    background: white;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-content h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: var(--primary);
}

.page-content h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--accent);
}

.page-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

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

.page-content li {
    margin-bottom: 10px;
}

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

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--primary);
}

.info-item {
    margin-bottom: 25px;
    padding: 20px;
    background: var(--light);
    border-radius: 5px;
}

.info-item strong {
    display: block;
    margin-bottom: 8px;
    color: var(--accent);
    font-size: 16px;
}

.info-item p {
    color: var(--text);
    font-size: 15px;
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px;
    background: white;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.thanks-container h1 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

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

.about-intro {
    background: white;
    padding: 80px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-intro h2 {
    font-size: 44px;
    margin-bottom: 30px;
    color: var(--primary);
}

.about-intro p {
    font-size: 18px;
    line-height: 1.9;
    color: #4a5568;
    max-width: 800px;
}

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

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

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

    .service-card {
        flex: 1 1 100%;
        flex-direction: column !important;
    }

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

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

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