* {
    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: #f8f9fa;
}

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

header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}

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

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

.nav-links a:hover {
    opacity: 0.8;
}

.hero-split {
    display: flex;
    min-height: 500px;
    background: white;
}

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

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

.hero-right::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
}

h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: #555;
    margin-bottom: 30px;
}

.cta-primary {
    display: inline-block;
    padding: 15px 40px;
    background: #667eea;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.section-alternate {
    display: flex;
    background: white;
    margin: 60px 0;
}

.section-content {
    flex: 1;
    padding: 60px;
}

.section-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 400px;
    background-color: #e9ecef;
}

.section-alternate:nth-child(even) {
    flex-direction: row-reverse;
    background: #f8f9fa;
}

h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.service-card {
    flex: 1 1 calc(50% - 30px);
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #667eea;
}

.service-price {
    font-size: 32px;
    font-weight: bold;
    color: #764ba2;
    margin: 15px 0;
}

.service-price span {
    font-size: 18px;
    color: #666;
}

.form-container {
    max-width: 600px;
    margin: 60px auto;
    padding: 40px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
}

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

footer {
    background: #2c3e50;
    color: white;
    padding: 40px 20px 20px;
    margin-top: 60px;
}

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

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

.footer-section h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section p,
.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    line-height: 1.8;
    display: block;
}

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

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 9999;
    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: 20px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.3s;
}

.btn-accept {
    background: #667eea;
    color: white;
}

.btn-reject {
    background: #e0e0e0;
    color: #333;
}

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.8;
}

.content-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px;
    background: white;
    border-radius: 8px;
}

.content-wrapper h1 {
    font-size: 36px;
    margin-bottom: 30px;
}

.content-wrapper h2 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
}

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

.contact-info {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin: 20px 0;
}

.contact-item {
    margin: 15px 0;
    font-size: 18px;
}

.contact-item strong {
    display: inline-block;
    width: 150px;
    color: #667eea;
}

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

.success-icon {
    font-size: 80px;
    color: #27ae60;
    margin-bottom: 20px;
}

.thanks-container h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #27ae60;
}

.disclaimer {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin: 40px 0;
    border-radius: 4px;
}

.disclaimer p {
    color: #856404;
    font-size: 14px;
}

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

    .service-card {
        flex: 1 1 100%;
    }

    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

    h1 {
        font-size: 32px;
    }

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