:root {
    --primary: #6c5ce7;
    --primary-dark: #5649c0;
    --secondary: #00cec9;
    --secondary-dark: #00a8a5;
    --accent: #fd79a8;
    --dark: #1a1a2e;
    --darker: #16213e;
    --darkest: #0f1621;
    --light: #e2e2e2;
    --lighter: #f5f5f5;
    --gray: #7f8c8d;
    --success: #00b894;
    --warning: #fdcb6e;
    --danger: #d63031;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
}

.btn-secondary:hover {
    background-color: rgba(0, 206, 201, 0.1);
    box-shadow: 0 5px 15px rgba(0, 206, 201, 0.2);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--lighter);
}

.section-title p {
    color: var(--secondary);
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive utilities */
@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .hide-desktop {
        display: none !important;
    }
}