@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;800&display=swap');

:root {
    --primary: #58CC02;
    --primary-depth: #52BA02;
    --secondary: #FF9600;
    --secondary-depth: #E08500;
    --accent: #1CB0F6;
    --accent-depth: #189EDD;
    --bg-light: #FFFFFF;
    --bg-page: #F7F7F7;
    --text-main: #4B4B4B;
    --text-muted: #AFAFAF;
    --border: #E5E5E5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-page);
    color: var(--text-main);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    width: 90%;
    margin: 3rem auto;
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--border);
    border-bottom: 6px solid var(--border);
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--secondary);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: -1px;
}

h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-main);
    border-left: 5px solid var(--accent);
    padding-left: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

li::marker {
    color: var(--primary);
}

.footer {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    padding-bottom: 2rem;
    font-weight: 600;
}

.btn-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    transition: all 0.1s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-bottom: 4px solid rgba(0,0,0,0.2);
}

.btn:active {
    transform: translateY(2px);
    border-bottom-width: 2px;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    border-bottom-color: var(--primary-depth);
}

.btn-secondary {
    background-color: white;
    border: 2px solid var(--border);
    border-bottom: 4px solid var(--border);
    color: var(--accent);
}

.btn-accent {
    background-color: var(--accent);
    color: white;
    border-bottom-color: var(--accent-depth);
}

.highlight {
    background-color: #e8f5e9;
    padding: 1rem;
    border-radius: 12px;
    border: 2px dashed var(--primary);
    margin: 1.5rem 0;
}

@media (max-width: 640px) {
    .container {
        padding: 1.5rem;
        margin: 1.5rem auto;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .btn-container {
        flex-direction: column;
    }
}
