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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    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: white;
    padding: 20px;
    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-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 30px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

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

.btn-reject {
    background-color: #95a5a6;
    color: white;
}

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

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

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #3498db;
}

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

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

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

.ad-notice {
    background-color: #ffe6e6;
    color: #c0392b;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #2c3e50;
}

.hero-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.8), rgba(44, 62, 80, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    z-index: 10;
}

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

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

.cta-primary {
    display: inline-block;
    background-color: #e74c3c;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.3s;
}

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

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

.intro-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background-color: #ecf0f1;
    border-radius: 8px;
}

.intro-card h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.intro-card p {
    font-size: 18px;
    color: #34495e;
    line-height: 1.8;
}

.benefits-grid {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

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

.cards-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.benefit-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    max-width: 400px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.card-content {
    padding: 25px;
}

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

.card-content p {
    font-size: 16px;
    color: #34495e;
    line-height: 1.6;
}

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

.process-content {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.process-text {
    flex: 1;
    min-width: 300px;
}

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

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

.process-image {
    flex: 1;
    min-width: 300px;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

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

.services-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #7f8c8d;
    margin-top: -30px;
    margin-bottom: 50px;
}

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

.service-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    max-width: 550px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    background-color: #ecf0f1;
}

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

.service-info {
    padding: 30px;
}

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

.service-info p {
    font-size: 16px;
    color: #34495e;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.service-features li {
    padding: 8px 0;
    color: #34495e;
    font-size: 15px;
    position: relative;
    padding-left: 25px;
}

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

.price-tag {
    font-size: 32px;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 20px;
}

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

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

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

.testimonial-section .section-title {
    color: white;
}

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

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    max-width: 400px;
}

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

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

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

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ecf0f1;
    padding: 40px;
    border-radius: 8px;
}

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

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

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 15px;
    background-color: white;
}

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

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

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

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

.disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.8;
    text-align: center;
}

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

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #3498db;
}

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

    .nav-links {
        display: none;
    }

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

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

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