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

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

header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.top-banner {
    background: #ffd93d;
    padding: 8px 0;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

nav {
    padding: 20px 0;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #ff6b6b;
    text-decoration: none;
}

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

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

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

.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
}

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

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

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

.card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 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 8px 30px rgba(0,0,0,0.15);
}

.card-image {
    width: 100%;
    height: 240px;
    background: #e9ecef;
    position: relative;
    overflow: hidden;
}

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

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

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

.card-content p {
    color: #718096;
    margin-bottom: 20px;
    line-height: 1.7;
    flex-grow: 1;
}

.price-tag {
    font-size: 28px;
    font-weight: bold;
    color: #ff6b6b;
    margin: 15px 0;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background: #ff6b6b;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
}

.btn:hover {
    background: #ee5a5a;
    transform: scale(1.05);
}

.btn-secondary {
    background: #667eea;
}

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

.section-alt {
    background: white;
    padding: 60px 0;
}

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

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

.feature-card {
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
    padding: 30px;
    border-radius: 16px;
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
}

.feature-card h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2d3748;
}

.feature-card p {
    color: #4a5568;
    line-height: 1.7;
}

.story-section {
    padding: 80px 0;
    background: #f7fafc;
}

.story-card {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    max-width: 900px;
    margin: 0 auto;
}

.story-card h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2d3748;
}

.story-card p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.8;
}

.form-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 40px auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    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;
}

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

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    padding: 40px 0;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    border-left: 4px solid #ff6b6b;
}

.testimonial-card p {
    font-style: italic;
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: bold;
    color: #2d3748;
}

footer {
    background: #2d3748;
    color: white;
    padding: 50px 0 30px;
}

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

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

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 20px;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #4a5568;
    color: #a0aec0;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d3748;
    color: white;
    padding: 25px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    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;
    gap: 20px;
    flex-wrap: wrap;
}

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

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

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

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

.accept-btn {
    background: #48bb78;
    color: white;
}

.decline-btn {
    background: #718096;
    color: white;
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px 0;
}

.info-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    flex: 1 1 calc(33.333% - 15px);
    min-width: 250px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.info-card h4 {
    color: #2d3748;
    margin-bottom: 10px;
    font-size: 18px;
}

.info-card p {
    color: #718096;
    line-height: 1.6;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin: 40px 0;
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2d3748;
}

.contact-detail {
    margin-bottom: 25px;
    padding: 20px;
    background: #f7fafc;
    border-radius: 8px;
}

.contact-detail strong {
    display: block;
    margin-bottom: 8px;
    color: #2d3748;
    font-size: 16px;
}

.contact-detail p {
    color: #4a5568;
    line-height: 1.6;
}

.legal-content {
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin: 40px auto;
    max-width: 1000px;
}

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

.legal-content h2 {
    font-size: 26px;
    margin: 35px 0 20px;
    color: #2d3748;
}

.legal-content h3 {
    font-size: 20px;
    margin: 25px 0 15px;
    color: #4a5568;
}

.legal-content p {
    margin-bottom: 18px;
    color: #4a5568;
    line-height: 1.8;
}

.legal-content ul {
    margin: 15px 0 15px 30px;
    color: #4a5568;
}

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

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

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

.thanks-card h1 {
    font-size: 42px;
    color: #48bb78;
    margin-bottom: 20px;
}

.thanks-card p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.7;
}

.cta-banner {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
    padding: 60px 20px;
    text-align: center;
    color: white;
    margin: 60px 0;
    border-radius: 20px;
}

.cta-banner h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

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

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

    .card {
        flex: 1 1 100%;
    }

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

    .story-card {
        padding: 30px;
    }

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

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

    .nav-links {
        gap: 15px;
        font-size: 14px;
    }
}
