/*--------------------------------GLOBAL & RESET---------------------------------------------------*/
:root {
    --bg-color: #FFFDF9; /* Warm cream background from screenshot */
    --text-dark: #121212;
    --text-light: #555555;
    --primary-btn: #121212;
    --accent-glow-yellow: rgba(255, 245, 180, 0.6);
    --accent-glow-pink: rgba(255, 230, 240, 0.6);
    --card-white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* --- UNIVERSAL OVERFLOW FIX --- */
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden; /* CRITICAL: Cuts off right-side white space */
    position: relative;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden !important; 
}

h1, h2, h3, h4, .logo {
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/*--------------------------------UTILITIES---------------------------------------------------*/
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    background-color: var(--primary-btn);
    color: white;
    padding: 14px 28px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s;
    display: inline-block;
}

.btn:hover {
    opacity: 0.8;
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Common Grid Layout for Sections 3-8 */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: var(--card-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
}