* {
    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: #333;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    min-height: 100vh;
}

header {
    background: linear-gradient(135deg, #c27715 0%, #f5a742 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tagline {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.95;
}

main {
    padding: 3rem 2rem;
}

.hero {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #fff8e1 0%, #ffe0b2 100%);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero h2 {
    color: #c27715;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    color: #555;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature {
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #c27715;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(194, 119, 21, 0.2);
}

.feature h3 {
    color: #c27715;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.content {
    margin-bottom: 3rem;
}

.content h2 {
    color: #c27715;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    border-bottom: 2px solid #f5a742;
    padding-bottom: 0.5rem;
}

.content h3 {
    color: #555;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.content ul, .content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content li {
    margin-bottom: 0.8rem;
}

.content li strong {
    color: #c27715;
}

.cta {
    background: linear-gradient(135deg, #fff8e1 0%, #ffe0b2 100%);
    padding: 3rem 2rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 3rem;
}

.cta h2 {
    color: #c27715;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.benefits p {
    background: white;
    padding: 1rem;
    border-radius: 5px;
    font-weight: 500;
    color: #c27715;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.button {
    display: inline-block;
    background: linear-gradient(135deg, #c27715 0%, #f5a742 100%);
    color: white;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(194, 119, 21, 0.4);
    margin: 2rem 0;
}

.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(194, 119, 21, 0.6);
}

.subtitle {
    font-size: 1rem;
    color: #666;
}

.subtitle a {
    color: #c27715;
    text-decoration: none;
    font-weight: 600;
}

.subtitle a:hover {
    text-decoration: underline;
}

.faq {
    margin-bottom: 3rem;
}

.faq h2 {
    color: #c27715;
    margin-bottom: 2rem;
    font-size: 2rem;
    text-align: center;
}

.faq-item {
    background: #f9f9f9;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #f5a742;
}

.faq-item h4 {
    color: #c27715;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: #555;
}

footer {
    background: #333;
    color: white;
    padding: 2rem;
    text-align: center;
}

footer a {
    color: #f5a742;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .benefits {
        grid-template-columns: 1fr;
    }

    main {
        padding: 2rem 1rem;
    }
}

