/* Additional styles to match original template more closely */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Header adjustments */
header {
    background-color: #fff;
    padding: 15px 0;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

/* Hero section adjustments - styles moved to index.html */

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #e6e619;
    color: #000;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.3s;
    display: inline-block;
    text-transform: none;
}

.cta-button:hover {
    background-color: #d1d117;
    transform: translateY(-3px);
}

/* Intro section adjustments */
.intro {
    padding: 100px 0;
}

.intro-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
}

.intro-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Achievements section adjustments */
.achievements {
    background-color: #f9f9f9;
    padding: 100px 0;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 15px;
}

/* Services section adjustments */
.services {
    padding: 100px 0;
}

.services-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.service-item {
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-image {
    height: 250px;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Testimonials section adjustments */
.testimonials {
    background-color: #f9f9f9;
    padding: 100px 0;
}

.testimonial-item {
    background-color: #fff;
    border-radius: 0;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Contact section adjustments */
.contact {
    padding: 100px 0;
}

.contact-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
}

.contact-info p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Footer adjustments */
footer {
    background-color: #222;
    padding: 80px 0 20px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-logo p {
    font-size: 16px;
    line-height: 1.8;
}

.footer-links h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    font-size: 16px;
}

.footer-contact h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-contact p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    margin-right: 15px;
}

.footer-bottom {
    padding-top: 30px;
    margin-top: 50px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 40px;
    }
    
    .intro-text h2, 
    .achievements-header h2, 
    .services-header h2, 
    .testimonials-header h2, 
    .contact-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .intro-text h2, 
    .achievements-header h2, 
    .services-header h2, 
    .testimonials-header h2, 
    .contact-header h2 {
        font-size: 28px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .service-image {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .cta-button {
        padding: 10px 25px;
        font-size: 16px;
    }
    
    .intro-text h2, 
    .achievements-header h2, 
    .services-header h2, 
    .testimonials-header h2, 
    .contact-header h2 {
        font-size: 24px;
    }
    
    .intro-text p,
    .service-content p,
    .testimonial-text,
    .contact-info p {
        font-size: 16px;
    }
    
    .stat-number {
        font-size: 32px;
    }
}
