* {
    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;
}

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

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.main-nav {
    background-color: #ffffff;
    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: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

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

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

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

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    transition: 0.3s;
}

.hero-card {
    background-color: #ffffff;
    margin: 40px auto;
    max-width: 1200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.hero-content {
    padding: 60px 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

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

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    background-color: #ffffff;
    color: #667eea;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.hero-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: #e9ecef;
}

.hero-image img {
    width: 100%;
    height: 100%;
}

.features-grid {
    padding: 80px 0;
}

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

.feature-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

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

.feature-card img {
    width: 100%;
    height: 200px;
    background-color: #dee2e6;
}

.feature-card h3 {
    padding: 20px 25px 10px;
    font-size: 22px;
    color: #2c3e50;
}

.feature-card p {
    padding: 0 25px 25px;
    color: #6c757d;
}

.info-section {
    background-color: #ffffff;
    padding: 80px 0;
}

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

.process-cards {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.process-card {
    flex: 1;
    min-width: 240px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 35px 25px;
    border-radius: 10px;
    color: #ffffff;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    opacity: 0.3;
    margin-bottom: 15px;
}

.process-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
}

.process-card p {
    font-size: 15px;
    opacity: 0.9;
}

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

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

.service-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 260px;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: scale(1.03);
}

.service-card.featured {
    border: 3px solid #667eea;
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #667eea;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

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

.price {
    font-size: 36px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 25px;
}

.price span {
    font-size: 16px;
    color: #6c757d;
    font-weight: 400;
}

.service-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-card ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #495057;
}

.service-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: 700;
}

.select-service {
    width: 100%;
    background-color: #667eea;
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #5568d3;
}

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

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

.trust-content img {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    border-radius: 10px;
    background-color: #dee2e6;
}

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

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

.trust-text p {
    margin-bottom: 20px;
    color: #495057;
    font-size: 17px;
}

.link-secondary {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #667eea;
    transition: color 0.3s;
}

.link-secondary:hover {
    color: #5568d3;
}

.form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-card {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px 45px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

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

.form-card > p {
    text-align: center;
    color: #6c757d;
    margin-bottom: 35px;
}

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

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

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

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

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

.btn-submit {
    background-color: #667eea;
    color: #ffffff;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

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

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

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

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

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 18px;
    color: #ffffff;
}

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

.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: #ffffff;
}

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

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

.disclaimer {
    font-size: 12px;
    line-height: 1.5;
    max-width: 800px;
    margin: 15px auto 0;
}

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

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

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

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

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

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

.btn-reject {
    background-color: #e74c3c;
    color: #ffffff;
}

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

.cookie-link {
    color: #3498db;
    text-decoration: none;
    font-size: 14px;
}

.cookie-link:hover {
    text-decoration: underline;
}

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

.thanks-card {
    background-color: #ffffff;
    padding: 60px 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 600px;
}

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

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

.thanks-card .btn-home {
    display: inline-block;
    margin-top: 30px;
    background-color: #667eea;
    color: #ffffff;
    padding: 14px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.thanks-card .btn-home:hover {
    background-color: #5568d3;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

    .trust-content img {
        max-width: 100%;
    }

    .service-grid {
        flex-direction: column;
    }
}