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

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

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

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

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

.ad-notice {
    font-size: 11px;
    color: #7f8c8d;
    padding: 3px 8px;
    background-color: #ecf0f1;
    border-radius: 3px;
}

.hero-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 20px;
    margin: 40px auto;
    border-radius: 16px;
    text-align: center;
    max-width: 1200px;
}

.hero-card h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

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

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin: 60px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

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

.service-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: #ecf0f1;
}

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

.service-card p {
    color: #7f8c8d;
    margin-bottom: 15px;
    line-height: 1.6;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #667eea;
    margin: 15px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin: 60px 0 40px 0;
    color: #2c3e50;
}

.info-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px;
    margin: 40px auto;
    max-width: 1200px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.feature-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.feature-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 25px;
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}

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

.feature-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

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

.form-card h2 {
    margin-bottom: 25px;
    color: #2c3e50;
    text-align: center;
}

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

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

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

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

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

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

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

.footer-section h3 {
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s;
}

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

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

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

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

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

.cookie-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.3s;
}

.cookie-buttons button:hover {
    opacity: 0.9;
}

.contact-info-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}

.contact-info-card h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-info-card p {
    color: #7f8c8d;
    margin-bottom: 8px;
}

.legal-content {
    max-width: 900px;
    margin: 40px auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

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

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

.legal-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.legal-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.testimonial-card {
    background-color: #f8f9fa;
    border-left: 4px solid #667eea;
    padding: 25px;
    margin: 20px 0;
    border-radius: 8px;
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 10px;
}

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

.cta-card {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 50px 30px;
    border-radius: 12px;
    text-align: center;
    margin: 60px auto;
    max-width: 800px;
}

.cta-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.cta-card p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.disclaimer-box {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin: 30px auto;
    max-width: 900px;
    border-radius: 6px;
}

.disclaimer-box p {
    color: #856404;
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

    .nav-links {
        display: none;
    }

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

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