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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #2ecc71;
    color: white;
}

.btn-accept:hover {
    background-color: #27ae60;
    transform: translateY(-2px);
}

.btn-reject {
    background-color: transparent;
    color: white;
    border: 2px solid #95a5a6;
}

.btn-reject:hover {
    background-color: #95a5a6;
    transform: translateY(-2px);
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

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

.ad-label {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 10px;
    background-color: #ecf0f1;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero-card {
    position: relative;
    height: 520px;
    margin: 30px auto;
    max-width: 1400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44,62,80,0.85) 0%, rgba(52,152,219,0.75) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.hero-overlay h1 {
    font-size: 48px;
    color: white;
    margin-bottom: 20px;
    max-width: 800px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 22px;
    color: #ecf0f1;
    max-width: 600px;
}

.cards-grid {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.intro-card,
.insight-card,
.story-card,
.problem-card {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.intro-card h2,
.story-card h3,
.problem-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.intro-card p,
.story-card p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #34495e;
}

.insight-card {
    display: flex;
    gap: 40px;
    align-items: center;
}

.insight-card img {
    flex: 0 0 45%;
    border-radius: 8px;
    object-fit: cover;
    background-color: #ecf0f1;
}

.card-content {
    flex: 1;
}

.card-content h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #2c3e50;
}

.card-content p {
    font-size: 17px;
    margin-bottom: 14px;
    color: #34495e;
}

.problem-list {
    list-style: none;
    padding-left: 0;
}

.problem-list li {
    padding: 15px 0;
    border-bottom: 1px solid #ecf0f1;
    font-size: 17px;
    color: #34495e;
}

.problem-list li:last-child {
    border-bottom: none;
}

.problem-list strong {
    color: #e74c3c;
}

.solution-cards {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 30px;
}

.section-title {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.service-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    flex: 0 1 calc(50% - 15px);
    max-width: 550px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #ecf0f1;
}

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

.service-card p {
    padding: 0 24px 16px;
    font-size: 16px;
    color: #34495e;
    flex: 1;
}

.price {
    padding: 0 24px 16px;
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
}

.cta-btn {
    margin: 0 24px 24px;
    padding: 14px 28px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.testimonials-card {
    max-width: 1400px;
    margin: 60px auto;
    padding: 50px 30px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

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

blockquote {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    padding: 30px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    border-radius: 8px;
}

blockquote p {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 15px;
    color: #34495e;
}

cite {
    font-style: normal;
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

.form-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 30px;
}

.form-card {
    background-color: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    max-width: 700px;
    margin: 0 auto;
}

.form-card h2 {
    font-size: 34px;
    margin-bottom: 12px;
    color: #2c3e50;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 35px;
    font-size: 16px;
}

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

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

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

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

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #2ecc71;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #27ae60;
    transform: translateY(-2px);
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    margin-top: 80px;
    padding: 50px 30px 20px;
}

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

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

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

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

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

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

.footer-section a:hover {
    color: #3498db;
}

.disclaimer {
    font-size: 13px;
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #95a5a6;
    font-size: 14px;
}

.contact-page {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 30px;
}

.contact-card {
    background-color: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.info-item {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.info-item p {
    font-size: 16px;
    color: #34495e;
}

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

.services-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

.about-page {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 30px;
}

.about-content {
    background-color: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.about-content h2 {
    font-size: 28px;
    margin-top: 35px;
    margin-bottom: 18px;
    color: #2c3e50;
}

.about-content p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #34495e;
    line-height: 1.7;
}

.legal-page {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 30px;
}

.legal-content {
    background-color: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.legal-content h2 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.legal-content ul {
    margin-bottom: 16px;
    padding-left: 25px;
}

.legal-content li {
    margin-bottom: 8px;
    color: #34495e;
    font-size: 15px;
}

.thanks-page {
    max-width: 800px;
    margin: 100px auto;
    padding: 0 30px;
}

.thanks-card {
    background-color: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
}

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

.thanks-card p {
    font-size: 18px;
    color: #34495e;
    margin-bottom: 15px;
}

.thanks-card .selected-service {
    font-weight: 700;
    color: #3498db;
}

.back-link {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 28px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-link:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 32px;
    }

    .hero-overlay p {
        font-size: 18px;
    }

    .insight-card {
        flex-direction: column;
    }

    .insight-card img {
        flex: 1;
        width: 100%;
    }

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

    .nav-links {
        flex-direction: column;
        gap: 10px;
    }

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