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

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

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

.navbar {
    background-color: #1a1a2e;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    background-color: #e74c3c;
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 25px;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

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

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

.btn-accept:hover {
    background-color: #229954;
}

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

.btn-reject:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

.hero-section {
    height: 500px;
    background-image: url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?w=1400&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    background-color: rgba(26, 26, 46, 0.85);
    padding: 60px 40px;
    text-align: center;
    max-width: 700px;
    border-radius: 8px;
}

.hero-overlay h1 {
    color: #ffffff;
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-overlay p {
    color: #ecf0f1;
    font-size: 20px;
}

.intro-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a2e;
}

.intro-section p {
    font-size: 18px;
    color: #34495e;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.problem-section {
    padding: 70px 0;
    background-color: #ffffff;
}

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

.problem-card {
    flex: 1 1 300px;
    max-width: 350px;
    background-color: #ecf0f1;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.problem-card p {
    font-size: 16px;
    color: #5d6d7e;
}

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

.services-preview h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #1a1a2e;
}

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

.service-card {
    flex: 1 1 350px;
    max-width: 380px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

.card-body {
    padding: 30px;
}

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

.card-body p {
    font-size: 15px;
    color: #5d6d7e;
    margin-bottom: 20px;
}

.price-tag {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

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

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

.trust-section {
    padding: 70px 0;
    background-color: #ffffff;
}

.trust-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a1a2e;
}

.trust-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-item {
    flex: 1 1 280px;
    max-width: 350px;
    text-align: center;
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.trust-item p {
    font-size: 16px;
    color: #5d6d7e;
}

.testimonials-section {
    padding: 80px 0;
    background-color: #1a1a2e;
    color: #ffffff;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

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

.testimonial-card {
    flex: 1 1 300px;
    max-width: 350px;
    background-color: #2c3e50;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: block;
    font-size: 14px;
    color: #bdc3c7;
    font-weight: 600;
}

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

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

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a2e;
    text-align: center;
}

.form-wrapper > p {
    text-align: center;
    color: #5d6d7e;
    margin-bottom: 30px;
}

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

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

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #dfe6e9;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: #ecf0f1;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 14px 28px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #229954;
}

.cta-section {
    padding: 80px 0;
    background-color: #3498db;
    color: #ffffff;
    text-align: center;
}

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

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

.btn-cta {
    display: inline-block;
    padding: 14px 35px;
    background-color: #ffffff;
    color: #3498db;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

.footer {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 60px 0 20px;
}

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

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

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

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

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

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

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

.footer-section p {
    color: #bdc3c7;
    font-size: 14px;
    line-height: 1.6;
}

.disclaimer {
    font-size: 13px;
    line-height: 1.5;
    color: #95a5a6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 20px 20px 0;
    text-align: center;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 14px;
}

.page-header {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: #bdc3c7;
}

.about-content {
    padding: 80px 0;
}

.about-intro {
    text-align: center;
    margin-bottom: 60px;
}

.about-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.about-intro p {
    font-size: 18px;
    color: #5d6d7e;
    max-width: 800px;
    margin: 0 auto;
}

.about-story {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 70px;
    flex-wrap: wrap;
}

.story-image {
    flex: 1 1 400px;
    min-height: 350px;
    border-radius: 8px;
    overflow: hidden;
}

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

.story-text {
    flex: 1 1 400px;
}

.story-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.story-text p {
    font-size: 16px;
    color: #5d6d7e;
    margin-bottom: 15px;
    line-height: 1.7;
}

.values-section {
    margin-bottom: 70px;
}

.values-section h2 {
    font-size: 34px;
    margin-bottom: 40px;
    color: #1a1a2e;
    text-align: center;
}

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

.value-card {
    flex: 1 1 250px;
    max-width: 280px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.value-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.value-card p {
    font-size: 15px;
    color: #5d6d7e;
    line-height: 1.6;
}

.team-section,
.mission-section {
    margin-bottom: 50px;
}

.team-section h2,
.mission-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a2e;
}

.team-section p,
.mission-section p {
    font-size: 16px;
    color: #5d6d7e;
    line-height: 1.7;
    margin-bottom: 15px;
}

.cta-about {
    padding: 60px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.cta-about h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a1a2e;
}

.services-detail {
    padding: 60px 0;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    margin-bottom: 70px;
    flex-wrap: wrap;
    align-items: center;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1 1 450px;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1 1 450px;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.service-detail-content p {
    font-size: 16px;
    color: #5d6d7e;
    margin-bottom: 15px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    color: #5d6d7e;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.service-pricing {
    margin: 25px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-size: 16px;
    color: #5d6d7e;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
}

.btn-select-service {
    padding: 12px 28px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.services-cta {
    padding: 60px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.services-cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.services-cta p {
    font-size: 16px;
    color: #5d6d7e;
    margin-bottom: 30px;
}

.contact-info {
    padding: 60px 0;
}

.contact-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
}

.contact-card {
    flex: 1 1 300px;
    max-width: 350px;
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
    text-align: center;
}

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.contact-card p {
    font-size: 16px;
    color: #5d6d7e;
    line-height: 1.7;
}

.contact-note {
    margin-top: 10px;
    font-size: 14px;
    color: #95a5a6;
    font-style: italic;
}

.contact-map-placeholder {
    padding: 80px 40px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 50px;
}

.contact-map-placeholder p {
    font-size: 18px;
    color: #5d6d7e;
}

.contact-additional {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-additional h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.contact-additional p {
    font-size: 16px;
    color: #5d6d7e;
    margin-bottom: 30px;
    line-height: 1.7;
}

.thanks-section {
    padding: 80px 0;
}

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

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

.thanks-message {
    font-size: 20px;
    color: #5d6d7e;
    margin-bottom: 40px;
}

.thanks-details {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 50px;
}

.thanks-details p {
    font-size: 16px;
    color: #5d6d7e;
    margin-bottom: 10px;
    line-height: 1.7;
}

.thanks-next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a1a2e;
}

.steps-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
}

.step-card {
    flex: 1 1 250px;
    max-width: 280px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

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

.step-card p {
    font-size: 15px;
    color: #5d6d7e;
    line-height: 1.6;
}

.thanks-cta {
    margin-top: 40px;
}

.thanks-cta p {
    font-size: 16px;
    color: #5d6d7e;
    margin-bottom: 25px;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    border: 2px solid #3498db;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.legal-page {
    padding: 60px 0;
}

.legal-intro {
    font-size: 14px;
    color: #95a5a6;
    margin-bottom: 30px;
}

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

.legal-content h2 {
    font-size: 26px;
    margin: 40px 0 20px;
    color: #1a1a2e;
}

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

.legal-content h4 {
    font-size: 18px;
    margin: 20px 0 10px;
    color: #34495e;
}

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

.legal-content ul {
    margin: 15px 0 20px 30px;
}

.legal-content ul li {
    font-size: 16px;
    color: #5d6d7e;
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-content a {
    color: #3498db;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #2980b9;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

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

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

    .intro-section h2,
    .services-preview h2 {
        font-size: 28px;
    }

    .card-grid,
    .card-grid-main {
        flex-direction: column;
        align-items: center;
    }

    .service-card,
    .problem-card {
        max-width: 100%;
    }

    .about-story {
        flex-direction: column;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

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

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