/* About Section */
#about-us {
    text-align: center;
    padding: 50px 20px;
    background-color: #fff; 
}

.about-container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    background-color: #ffffff;
    border: 3px solid #b30000; 
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.about-container h2 {
    font-size: 24px;
    color: #b30000;
    margin-bottom: 15px;
}

.about-container p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
}

.learn-more-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #b30000; 
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}

.learn-more-btn:hover {
    background-color: #cc0000;
}



/* Contact Section */
#contact-us {
    text-align: center;
    padding: 50px 20px;
    background-color: #fff; 
}

.contact-container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
}

.contact-container h2 {
    font-size: 24px;
    color: #b30000; 
    margin-bottom: 15px;
}

.contact-container p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 10px;
}

.contact-info {
    text-align: left;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 16px;
    margin: 5px 0;
}

.contact-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #b30000; 
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}

.contact-btn:hover {
    background-color: #cc0000;
}
