:root {
    --primary: #FF6F61;
    --secondary: #FFD6CF;
    --bg: #FFF5F3;
    --text-dark: #2D2D2D;
    --text-light: #666;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { overflow-x: hidden; max-width: 100%; }
body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--text-dark);
    line-height: 1.6;
}

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

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background: #e55a4d;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease;
}
.card:hover { transform: translateY(-5px); }

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

@media (min-width: 640px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}
