@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Oswald:wght@400;500;700&display=swap');

:root {
    /* Colorful Theme Palette */
    --primary-color: #F97316;    /* Orange */
    --secondary-color: #10B981;  /* Emerald Green */
    --accent-color: #EC4899;     /* Vibrant Pink */
    --dark-color: #1E293B;       /* Slate Dark */
    --light-color: #F8FAFC;      /* Slate Light */
    --gray-color: #64748B;       /* Secondary Text */
    
    --gradient-primary: linear-gradient(135deg, #F97316 0%, #EC4899 100%);
    --gradient-secondary: linear-gradient(135deg, #10B981 0%, #059669 100%);
    
    --font-heading: 'Oswald', sans-serif;
    --font-text: 'Inter', sans-serif;
}

body {
    font-family: var(--font-text);
    color: var(--dark-color);
    background-color: var(--light-color);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark-color);
}

.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.text-accent { color: var(--accent-color); }
.bg-dark { background-color: var(--dark-color); }
.bg-light { background-color: var(--light-color); }

.btn-gradient {
    background: var(--gradient-primary);
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
}

/* Mobile Menu Transition */
#mobile-menu {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

#mobile-menu.active {
    max-height: 300px;
    opacity: 1;
}

/* Numbered Circle Lists */
.numbered-circle-list {
    list-style: none;
    padding: 0;
}

.numbered-circle-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.numbered-circle-list .circle-num {
    background-color: var(--accent-color);
    color: white;
    font-family: var(--font-heading);
    font-weight: bold;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
    font-size: 0.9rem;
}

/* Cookie Banner (JS Version) */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-color);
    color: #ffffff;
    padding: 1.5rem;
    text-align: center;
    z-index: 9999;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.3);
}

.cookie-btn {
    cursor: pointer;
    padding: 0.6rem 2rem;
    margin: 0.5rem;
    background-color: var(--accent-color);
    color: #ffffff;
    border-radius: 4px;
    border: none;
    display: inline-block;
    font-weight: bold;
    font-family: inherit;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.cookie-btn-alt {
    background-color: #4B5563;
}