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

header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    flex-wrap: wrap;
}

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

.ad-disclosure {
    font-size: 11px;
    color: #718096;
    padding: 4px 10px;
    background-color: #edf2f7;
    border-radius: 4px;
    margin: 0 15px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    flex-wrap: wrap;
}

nav a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #2c5282;
}

.hero {
    background-color: #1a365d;
    background-image: linear-gradient(135deg, rgba(26, 54, 93, 0.95), rgba(44, 82, 130, 0.9));
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

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

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

.btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: #ed8936;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    background-color: #dd6b20;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(237, 137, 54, 0.4);
}

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

.btn-secondary:hover {
    background-color: #ffffff;
    color: #2c5282;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    padding: 60px 20px;
}

.card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    display: flex;
    flex-direction: column;
}

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

.card-image {
    width: 100%;
    height: 220px;
    background-color: #e2e8f0;
    position: relative;
    overflow: hidden;
}

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

.card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

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

.card p {
    color: #4a5568;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2c5282;
    margin-bottom: 18px;
}

.section {
    padding: 70px 20px;
}

.section-alt {
    background-color: #ffffff;
}

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

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

.info-card {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
}

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

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

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

.form-container h2 {
    color: #2d3748;
    margin-bottom: 30px;
    text-align: center;
    font-size: 32px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    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: #667eea;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

footer {
    background-color: #1a202c;
    color: #cbd5e0;
    padding: 50px 20px 30px;
}

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

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

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

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

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

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

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

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 25px;
    text-align: center;
    font-size: 14px;
}

.disclaimer {
    background-color: #fef5e7;
    border-left: 4px solid #ed8936;
    padding: 20px;
    margin: 40px 0;
    border-radius: 6px;
}

.disclaimer p {
    font-size: 14px;
    color: #5a5a5a;
    line-height: 1.7;
}

.contact-info {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin: 40px 0;
}

.contact-info h3 {
    color: #2c5282;
    margin-bottom: 20px;
    font-size: 26px;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 16px;
}

.contact-info strong {
    color: #2d3748;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
}

.cookie-banner.active {
    display: block;
}

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

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

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.cookie-accept {
    background-color: #48bb78;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #38a169;
}

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

.cookie-reject:hover {
    background-color: #4a5568;
}

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

.legal-content h1 {
    color: #2d3748;
    margin-bottom: 30px;
    font-size: 36px;
}

.legal-content h2 {
    color: #2c5282;
    margin-top: 35px;
    margin-bottom: 15px;
    font-size: 26px;
}

.legal-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.legal-content li {
    margin-bottom: 10px;
}

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

.thanks-container h1 {
    color: #2c5282;
    font-size: 42px;
    margin-bottom: 25px;
}

.thanks-container p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 20px;
}

.checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #48bb78;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 48px;
    color: #ffffff;
}

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

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

    .card {
        flex: 1 1 100%;
    }

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

    nav ul {
        gap: 15px;
    }

    .section-title {
        font-size: 28px;
    }

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