* {
    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;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo img {
    height: 60px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--yellow);
}

/* Burger Menu */
.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.burger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--white);
    border-radius: 3px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger.open span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.burger.open span:nth-child(2) {
    opacity: 0;
}

.burger.open span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* 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.5em;
    color: var(--pink);
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    color: var(--black);
    margin-bottom: 30px;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
    color: var(--white);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(181, 34, 119, 0.3);
    margin: 10px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(181, 34, 119, 0.4);
}

.cta-button.secondary {
    background: linear-gradient(135deg, var(--yellow) 0%, #f0b000 100%);
    box-shadow: 0 4px 15px rgba(224, 162, 0, 0.3);
}

.cta-button.secondary:hover {
    box-shadow: 0 6px 20px rgba(224, 162, 0, 0.4);
}

/* Content Sections */
.content-section {
    padding: 60px 0;
}

.content-section:nth-child(even) {
    background-color: var(--light-purple-2);
}

.content-section h2 {
    font-size: 2em;
    color: var(--pink);
    margin-bottom: 20px;
}

.content-section h3 {
    font-size: 1.5em;
    color: var(--purple);
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-section p {
    margin-bottom: 15px;
    text-align: justify;
}

.content-section ul, .content-section ol {
    margin-left: 30px;
    margin-bottom: 15px;
}

.content-section li {
    margin-bottom: 10px;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

table th {
    background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
    color: var(--white);
    padding: 15px;
    text-align: left;
    font-weight: bold;
}

table td {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
}

table tr:hover {
    background-color: var(--light-purple-2);
}

/* Table Scroll Wrapper */
.table-scroll {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* CTA Sections */
.cta-section {
    background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
    padding: 40px;
    text-align: center;
    border-radius: 15px;
    margin: 40px 0;
    box-shadow: 0 4px 20px rgba(181, 34, 119, 0.3);
}

.cta-section h3 {
    color: var(--white);
    font-size: 1.8em;
    margin-bottom: 20px;
}

.cta-section p {
    color: var(--white);
    font-size: 1.1em;
    margin-bottom: 25px;
}

/* FAQ Section */
.faq-item {
    background-color: var(--white);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: var(--pink);
    margin-bottom: 10px;
}

/* Footer */
footer {
    background-color: var(--black);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-section {
    margin: 20px;
}

.footer-section h3 {
    color: var(--yellow);
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--yellow);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .container {
        padding: 0 16px;
    }

    .burger {
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
        position: absolute;
        right: 20px;
        left: 20px;
        top: 72px;
        background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.25);
        display: none;
        z-index: 10;
    }

    nav ul.open {
        display: flex;
    }
    
    .hero h1 {
        font-size: 1.8em;
    }
    
    .content-section h2 {
        font-size: 1.5em;
    }
    
    table {
        font-size: 14px;
    }
    
    .table-scroll table {
        min-width: 600px;
    }
}

/* Warning Box */
.warning-box {
    background-color: #fff3cd;
    border-left: 5px solid var(--yellow);
    padding: 20px;
    margin: 30px 0;
    border-radius: 5px;
}

.warning-box h3 {
    color: var(--yellow);
    margin-bottom: 15px;
}

/* Info Box */
.info-box {
    background-color: var(--light-purple-2);
    border-left: 5px solid var(--purple);
    padding: 20px;
    margin: 30px 0;
    border-radius: 5px;
}

.info-box h3 {
    color: var(--purple);
    margin-bottom: 15px;
}
