/* ========== GLOBAL STYLES ========== */
/* Resets and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background-color: #f8f9fa; /* Light background for content sections */
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
}

.btn-primary {
    background: #ff9933; /* Kesari (saffron) color */
    color: white;
    border: 2px solid #ff9933;
}

.btn-primary:hover {
    background: transparent;
    color: #ff9933;
}

.btn-secondary {
    background: transparent;
    color: #fcfcfc; /* Deep gray color */
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background: #2c3e50;
    color: white;
}

/* Section title styling */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    color: #2c3e50; /* Deep gray color */
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #ff9933; /* Kesari (saffron) color */
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}