/* General Body Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

h1, h2, h3 {
    color: #2c3e50;
    font-weight: 600;
}

section { 
    padding: 80px 40px; 
    overflow: hidden; 
}

section[id] { 
    scroll-margin-top: 85px; 
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    /* This is the key change for responsive section titles */
    font-size: clamp(2rem, 5vw, 2.5rem); 
    margin-bottom: 0.5rem;
}

.section-header p {
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.btn { 
    display: inline-block; 
    color: #fff; 
    padding: 12px 24px; 
    border-radius: 5px; 
    transition: background-color 0.3s ease, transform 0.2s ease; 
    cursor: pointer; 
    text-decoration: none; 
    font-weight: 600; 
    border: none; 
}

/* UPDATED BUTTON STYLES START HERE */
.btn-primary { 
    background-color: #f3c623;
    color: #2c3e50;
    border: none;
    border-radius: 50px;
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: none;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover { 
    background-color: #ffda4e;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-primary:active {
    transform: translateY(1px);
    background-color: #d8a100;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
/* UPDATED BUTTON STYLES END HERE */