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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

.navigation {
    background-color: #34495e;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

.nav-disclosure {
    color: #ecf0f1;
    font-size: 0.85rem;
    font-style: italic;
}

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

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

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

.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    object-fit: cover;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    max-width: 800px;
}

.hero-overlay h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-overlay p {
    font-size: 1.3rem;
    line-height: 1.8;
}

.intro-section {
    padding: 80px 20px;
    background-color: #fff;
}

.intro-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-card h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.intro-card p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: #555;
}

.problem-section {
    padding: 80px 20px;
    background-color: #ecf0f1;
}

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

.info-card {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

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

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.card-content p {
    color: #666;
    line-height: 1.7;
}

.solution-section {
    padding: 80px 20px;
    background-color: #fff;
}

.solution-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.solution-text {
    flex: 1;
    min-width: 400px;
}

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

.solution-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}

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

.solution-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #444;
}

.solution-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}

.solution-image {
    flex: 1;
    min-width: 400px;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.benefits-section {
    padding: 80px 20px;
    background-color: #ecf0f1;
}

.benefits-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.benefit-card {
    flex: 1;
    min-width: 250px;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.research-section {
    padding: 60px 20px;
    background-color: #fff;
}

.research-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.research-card h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.research-card p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

.research-card a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.research-card a:hover {
    text-decoration: underline;
}

.testimonials-section {
    padding: 80px 20px;
    background-color: #2c3e50;
    color: #fff;
}

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

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background-color: #34495e;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

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

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

.services-preview {
    padding: 80px 20px;
    background-color: #ecf0f1;
}

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

.service-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

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

.service-info {
    padding: 25px;
}

.service-info h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.service-price {
    font-size: 1.6rem;
    font-weight: bold;
    color: #27ae60;
    margin-bottom: 20px;
}

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

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

.form-section {
    padding: 80px 20px;
    background-color: #fff;
}

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

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

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

.contact-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #27ae60;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    padding: 60px 20px;
    background-color: #ecf0f1;
}

.disclaimer-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    border-left: 4px solid #e67e22;
}

.disclaimer-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #e67e22;
}

.disclaimer-card p {
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #fff;
}

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

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

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

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

.references {
    font-size: 0.9rem;
}

.references li {
    margin-bottom: 12px;
}

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

.btn-primary {
    padding: 10px 25px;
    background-color: #27ae60;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    padding: 10px 25px;
    background-color: #95a5a6;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
}

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 40px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

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

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

.thanks-container p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

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

    .hero-overlay p {
        font-size: 1.1rem;
    }

    .solution-wrapper {
        flex-direction: column;
    }

    .solution-text,
    .solution-image {
        min-width: 100%;
    }

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

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