/* ==========================================================================
   Core Styles - Non-homepage specific 
   ========================================================================== */

/* Reset and basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    position: relative;
}

.underline {
    width: 80px;
    height: 4px;
    background-color: #4CAF50;
    margin: 0 auto;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #3e8e41;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: #4CAF50;
}

/* Form Styles */
.error-field {
    border: 1px solid #ff0000 !important;
    background-color: #fff8f8;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
}

@media screen and (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .btn {
        padding: 10px 25px;
    }
}

@media screen and (max-width: 576px) {
    section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
}



/* ----------------------------------------------css for page Add this to your main CSS file */
/* Add this to your CSS file */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 30px;
}

.page h1 {
    margin-top: 10px;
    text-align: center;
    margin-bottom: 30px;
}

.page .content {
    padding: 0 20px 20px;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }
}