* {
    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: #333;
    background: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.ad-disclosure {
    background: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

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

.nav-menu a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #2c3e50;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background: #f8f9fa;
}

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c3e50;
}

.hero-content p {
    font-size: 19px;
    margin-bottom: 35px;
    color: #555;
    max-width: 520px;
}

.hero-image {
    flex: 1;
    background: #e0e0e0;
}

.hero-image img {
    width: 100%;
    height: 100%;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: #2c3e50;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 16px;
}

.cta-button:hover {
    background: #1a252f;
}

.split-feature {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    gap: 80px;
    padding: 0 40px;
}

.feature-image {
    flex: 1;
    background: #f0f0f0;
}

.feature-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.feature-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.services-preview {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.services-grid {
    display: flex;
    gap: 35px;
    margin-bottom: 50px;
}

.service-card {
    flex: 1;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: 280px;
    background: #e8e8e8;
}

.service-card h3 {
    font-size: 24px;
    padding: 25px 25px 15px;
    color: #2c3e50;
}

.service-card p {
    padding: 0 25px 15px;
    color: #666;
    font-size: 15px;
}

.service-card .price {
    display: block;
    padding: 15px 25px 25px;
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
}

.cta-center {
    text-align: center;
}

.cta-secondary {
    display: inline-block;
    padding: 14px 35px;
    background: transparent;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #2c3e50;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #2c3e50;
    color: #fff;
}

.split-reverse {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    gap: 80px;
    padding: 0 40px;
}

.split-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.split-image {
    flex: 1;
    background: #f0f0f0;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 15px 0 15px 35px;
    position: relative;
    font-size: 17px;
    color: #555;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c3e50;
    font-weight: 700;
    font-size: 20px;
}

.form-section {
    background: #f8f9fa;
    padding: 100px 40px;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #2c3e50;
    text-align: center;
}

.form-container > p {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
    font-size: 17px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 15px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c3e50;
}

form .cta-button {
    width: 100%;
    margin-top: 15px;
}

.main-footer {
    background: #2c3e50;
    color: #fff;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

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

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

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

.footer-col a:hover {
    color: #fff;
}

.footer-col p {
    color: #ddd;
    font-size: 15px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #3d4f5f;
    text-align: center;
    color: #aaa;
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 13px;
    color: #999;
    max-width: 800px;
    margin: 15px auto 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.15);
    padding: 25px;
    z-index: 1000;
    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: 30px;
}

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

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

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

.cookie-btn.accept {
    background: #2c3e50;
    color: #fff;
}

.cookie-btn.accept:hover {
    background: #1a252f;
}

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

.cookie-btn.reject:hover {
    background: #d0d0d0;
}

.page-header {
    background: #f8f9fa;
    padding: 80px 40px 60px;
    text-align: center;
}

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

.page-header p {
    font-size: 19px;
    color: #666;
}

.page-content {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 40px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 60px;
}

.service-item {
    display: flex;
    gap: 50px;
    align-items: center;
}

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

.service-item-image {
    flex: 1;
    background: #f0f0f0;
}

.service-item-image img {
    width: 100%;
    height: 400px;
}

.service-item-content {
    flex: 1;
}

.service-item-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-item-content p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}

.service-item-content .price {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 20px;
    display: block;
}

.about-content {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
}

.about-text {
    flex: 1.2;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.about-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.about-image {
    flex: 1;
    background: #f0f0f0;
}

.about-image img {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

.contact-split {
    display: flex;
    gap: 80px;
    margin-top: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    background: #e8e8e8;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

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

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

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #2c3e50;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}

.legal-content ul {
    margin: 15px 0 15px 25px;
    color: #555;
}

.legal-content ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background: #f8f9fa;
}

.thanks-container h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 18px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.thanks-container .cta-button {
    margin-top: 30px;
}

@media (max-width: 768px) {
    .hero-split,
    .split-feature,
    .split-reverse,
    .services-grid,
    .footer-content,
    .service-item,
    .about-content,
    .contact-split {
        flex-direction: column;
    }

    .nav-menu {
        gap: 20px;
    }

    .hero-content h1,
    .page-header h1 {
        font-size: 32px;
    }

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