/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --white: #ffffff;
    --pink: #b52277;
    --yellow: #e0a200;
    --black: #000000;
    --purple: #d5a2ff;
    --light-purple-1: #f7ebff;
    --light-purple-2: #f6ebff;
    --gray: #333333;
    --light-gray: #f5f5f5;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--gray);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 50px;
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--pink);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--light-purple-1) 0%, var(--light-purple-2) 100%);
    padding: 60px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    color: var(--pink);
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 30px 0;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--pink);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #9a1d63;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(181, 34, 119, 0.3);
}

.btn-secondary {
    background-color: var(--yellow);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #c78e00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(224, 162, 0, 0.3);
}

/* Content Sections */
.content-section {
    padding: 60px 0;
}

.content-section.alt-bg {
    background-color: var(--light-purple-2);
}

.content-section h2 {
    font-size: 2rem;
    color: var(--pink);
    margin-bottom: 25px;
}

.content-section h3 {
    font-size: 1.5rem;
    color: var(--purple);
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-section p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.formula {
    background-color: var(--light-purple-1);
    padding: 20px;
    border-left: 4px solid var(--pink);
    font-weight: 600;
    font-size: 1.2rem;
    text-align: center;
    margin: 25px 0;
}

/* Lists */
.feature-list,
.step-list,
.warning-list,
.glossary {
    margin: 20px 0;
    padding-left: 20px;
}

.feature-list li,
.step-list li,
.warning-list li,
.glossary li {
    margin-bottom: 15px;
    line-height: 1.7;
}

.step-list {
    list-style: decimal;
}

.warning-list li {
    color: #d32f2f;
}

/* Tables */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.info-table thead {
    background-color: var(--pink);
    color: var(--white);
}

.info-table th,
.info-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.info-table tbody tr:hover {
    background-color: var(--light-purple-1);
}

/* FAQ Section */
.faq {
    background-color: var(--white);
}

.faq-item {
    margin-bottom: 30px;
    padding: 25px;
    background-color: var(--light-purple-2);
    border-radius: 8px;
    border-left: 4px solid var(--purple);
}

.faq-item h3 {
    color: var(--pink);
    margin-top: 0;
    margin-bottom: 15px;
}

.faq-item p {
    margin-bottom: 0;
}

/* Warning Section */
.warning-section {
    background-color: #fff3e0;
    border: 2px solid var(--yellow);
}

.warning-section h2 {
    color: var(--yellow);
}

/* Footer */
footer {
    background-color: var(--gray);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--purple);
}

.footer-text {
    text-align: center;
    font-size: 0.9rem;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 20px;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .content-section h2 {
        font-size: 1.6rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .info-table {
        font-size: 0.9rem;
    }

    .info-table th,
    .info-table td {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .content-section {
        padding: 40px 0;
    }

    .info-table {
        font-size: 0.8rem;
    }

    .info-table th,
    .info-table td {
        padding: 8px;
    }
}