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

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

.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.ad-notice {
    font-size: 11px;
    color: #e74c3c;
    background: #ffe6e6;
    padding: 4px 12px;
    border-radius: 4px;
    margin: 0 20px;
}

.nav {
    display: flex;
    gap: 30px;
}

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

.nav a:hover {
    color: #3498db;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

.hero {
    margin-top: 0;
}

.hero-image {
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    background: rgba(0,0,0,0.5);
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text {
    color: #fff;
    max-width: 700px;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.cta-button {
    background: #3498db;
    color: #fff;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #2980b9;
}

.intro-cards {
    padding: 80px 0;
    background: #fff;
}

.card-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s;
}

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

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.info-card p {
    color: #666;
    line-height: 1.6;
}

.services-preview {
    padding: 80px 0;
    background: #f1f3f5;
}

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

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

.service-btn {
    width: 100%;
    padding: 12px;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.service-btn:hover {
    background: #2980b9;
}

.approach {
    padding: 80px 0;
    background: #fff;
}

.approach-content {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.approach-card {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

.approach-card.large-card {
    flex: 1 1 100%;
    background: #2c3e50;
    color: #fff;
}

.approach-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.approach-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.approach-card.large-card h2,
.approach-card.large-card h3 {
    color: #fff;
}

.approach-card p {
    line-height: 1.7;
    margin-bottom: 15px;
}

.testimonials {
    padding: 80px 0;
    background: #f1f3f5;
}

.testimonials h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.testimonial-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    border-left: 4px solid #3498db;
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #2c3e50;
}

.cta-section {
    padding: 80px 0;
    background: #fff;
}

.cta-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 60px;
    border-radius: 12px;
    text-align: center;
}

.cta-card h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-card p {
    font-size: 18px;
    margin-bottom: 30px;
}

.form-section {
    padding: 80px 0;
    background: #f1f3f5;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.form-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-button {
    padding: 16px;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-button:hover {
    background: #2980b9;
}

.disclaimer-section {
    padding: 60px 0;
    background: #fff;
}

.disclaimer-card {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 30px;
    border-radius: 8px;
}

.disclaimer-card h3 {
    color: #856404;
    margin-bottom: 15px;
    font-size: 20px;
}

.disclaimer-card p {
    color: #856404;
    line-height: 1.7;
    font-size: 14px;
}

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

.footer-content {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

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

.footer-col p {
    color: #bdc3c7;
    line-height: 1.7;
}

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

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

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

.footer-col ul li a:hover {
    color: #3498db;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #3498db;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-accept {
    background: #27ae60;
    color: #fff;
}

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

.btn-reject {
    background: #7f8c8d;
    color: #fff;
}

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

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

.thanks-card {
    background: #fff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    font-size: 64px;
    margin-bottom: 30px;
}

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

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

.thanks-card .selected-service {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid #3498db;
}

.thanks-card .selected-service strong {
    color: #2c3e50;
}

.back-button {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 40px;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.back-button:hover {
    background: #2980b9;
}

.content-page {
    padding: 80px 0;
    background: #fff;
}

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

.content-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.content-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.content-page p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #555;
}

.content-page ul,
.content-page ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.content-page li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #555;
}

.contact-info-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.contact-info-card h3 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.contact-info-card p {
    margin-bottom: 10px;
}

.contact-info-card strong {
    color: #2c3e50;
}

@media (max-width: 768px) {
    .nav {
        display: none;
        width: 100%;
        flex-direction: column;
        padding: 20px 0;
    }

    .nav.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .card-grid,
    .services-grid,
    .testimonial-grid {
        flex-direction: column;
    }

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

    .form-wrapper {
        padding: 30px 20px;
    }

    .cta-card {
        padding: 40px 30px;
    }

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

    .ad-notice {
        order: -1;
        margin: 10px 0;
    }
}
