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

:root {
    --primary-color: #2c5f8d;
    --secondary-color: #4a8bc2;
    --accent-color: #f5a623;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

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

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

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

header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

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

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

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

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

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

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

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

.split-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

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

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 35px;
    opacity: 0.95;
}

.hero-right {
    flex: 1;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    padding: 16px 40px;
    border: 2px solid var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.section-title {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 60px 0;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 40px 30px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.price-label {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.full-width-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.centered-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.image-container {
    width: 100%;
    height: 400px;
    background-color: var(--bg-light);
    overflow: hidden;
    margin: 40px 0;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form {
    max-width: 600px;
    margin: 40px auto;
    background-color: var(--bg-white);
    padding: 40px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    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-color);
}

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

.contact-info {
    background-color: var(--bg-light);
    padding: 50px 20px;
}

.info-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.info-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.info-item p {
    color: var(--text-light);
    line-height: 1.8;
}

footer {
    background-color: #1a1a1a;
    color: #999;
    padding: 50px 20px 30px;
}

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

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 14px;
}

.disclaimer {
    background-color: #fff9e6;
    border-left: 4px solid var(--accent-color);
    padding: 25px;
    margin: 40px 0;
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-dark);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: white;
    padding: 25px 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    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;
    font-size: 15px;
    line-height: 1.6;
}

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

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

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

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

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

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

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-dark);
}

.legal-content ul {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.thanks-content {
    max-width: 600px;
}

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

.thanks-content p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 35px;
}

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

    .split-left,
    .split-right,
    .hero-left,
    .hero-right {
        padding: 40px 20px;
    }

    .hero-right {
        min-height: 300px;
    }

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

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

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