/* ========================================
   Research Page Styles - Single Page Layout
   ======================================== */

/* Main Container */
.research-container {
 
    margin: 0 auto;
   
}

/* Research Section */
.research-section {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    padding: 50px 60px;
}

/* Main Title */
.research-main-title {
    font-family: 'Times New Roman', Times, serif;
    font-size: 36px;
    font-weight: bold;
    color: #00275f;
    margin: 0 0 40px 0;
    padding-bottom: 20px;
    border-bottom: 3px solid #00275f;
}

/* Research Item */
.research-item {
    margin-bottom: 35px;
}

.research-item:last-child {
    margin-bottom: 0;
}

/* Subtitle */
.research-subtitle {
    font-family: 'Times New Roman', Times, serif;
    font-size: 22px;
    font-weight: bold;
    color: #00275f;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

/* Research Text */
.research-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin: 0;
    text-align: justify;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 768px) {
 
    .research-section {
        padding: 30px 25px;
    }
    
    .research-main-title {
        font-size: 28px;
        margin-bottom: 30px;
        padding-bottom: 15px;
    }
    
    .research-item {
        margin-bottom: 25px;
    }
    
    .research-subtitle {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .research-text {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .research-section {
        padding: 25px 20px;
    }
    
    .research-main-title {
        font-size: 24px;
        margin-bottom: 25px;
        padding-bottom: 12px;
    }
    
    .research-subtitle {
        font-size: 17px;
    }
    
    .research-text {
        font-size: 14px;
    }
}
