           
        
h1 {
    margin: 0;
    font-size: 2.8em;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}
h2 {
    color: #0056b3;
    border-bottom: 2px solid #0056b3;
    padding-bottom: 8px;
    margin-top: 30px;
}
h3 {
    color: #0056b3;
}
.intro {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    border-left: 5px solid #0056b3;
}
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin: 30px 0;
}
.feature-box {
    flex: 0 0 48%;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.feature-box:hover {
    transform: translateY(-5px);
}
.feature-box h3 {
    color: #0056b3;
    margin-top: 0;
}
.image-section {
    text-align: center;
    margin: 40px 0;
}
.image-section img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid #eee;
}
.testimonials {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin: 30px 0;
}
.testimonial {
    margin: 20px 0;
    padding: 15px;
    border-left: 4px solid #0056b3;
    background-color: #f1f8ff;
    border-radius: 4px;
}
.service-details {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin: 30px 0;
}
.service-category {
    margin-bottom: 25px;
}
.service-category h3 {
    color: #0056b3;
    border-bottom: 1px dashed #0056b3;
    padding-bottom: 5px;
}
.service-list {
    columns: 2;
    column-gap: 30px;
}
.service-list li {
    margin-bottom: 10px;
    break-inside: avoid;
}
.contact-info {
    background-color: #0056b3;
    color: white;
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
    background-image: linear-gradient(to right, #0056b3, #0096FF);
}
.contact-info a {
    color: white;
    text-decoration: underline;
}
.stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 30px 0;
    text-align: center;
}
.stat-box {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin: 10px;
    flex: 1;
    min-width: 200px;
}
.stat-number {
    font-size: 2.5em;
    color: #0056b3;
    font-weight: bold;
    margin: 10px 0;
}
footer {
    text-align: center;
    padding: 30px;
    background-color: #333;
    color: white;
    margin-top: 30px;
}
@media (max-width: 768px) {
    .feature-box, .stat-box {
        flex: 0 0 100%;
    }
    .service-list {
        columns: 1;
    }
}

.about-section {
    width: 100%;
    padding: 20px 0;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
    gap: 30px;
}

.intro {
    flex: 2;
    min-width: 300px;
}

.image-section {
    flex: 1;
    min-width: 300px;
}

.image-section img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.image-section p {
    margin-top: 10px;
    font-style: italic;
    color: #666;
    text-align: center;
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }
    
    .intro, .image-section {
        width: 100%;
    }
}
