/* ========== COMMON STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #f29f05;
    --secondary: #F7921E;
    --accent: #FFB347;
    --light-bg: #FFF9F0;
    --dark: #2C2C2C;
    --text: #444444;
    --light-text: #777777;
    --white: #FFFFFF;
    --gray: #F5F5F5;
    --border: #EEEEEE;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark);
}

/* ========== COMMON COMPONENTS ========== */
.btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

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

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

.section-subtitle {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.section-title {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-title .highlight {
    color: var(--primary);
}

.section-description {
    font-size: 15px;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1200px) {
    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
    
    .section-container {
        padding: 50px 20px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 24px;
    }
    
    .btn-primary {
        padding: 12px 25px;
        font-size: 14px;
    }
}