* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    text-shadow: none !important;

}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
    
}

.container-about {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* About Heading with Animation */
.about-heading {
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

.about-heading h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a1a;
    position: relative;
    padding-bottom: 15px;


}

.animated-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 0;
    background: linear-gradient(90deg, #144777, #9ba5b6);
    animation: drawLine 1.5s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes drawLine {
    to {
        width: 100%;
    }
}

/* Company Section */
.company-section {
    margin-bottom: 60px;
}

.company-section h2 {
    font-size: 2.5rem;
    color: #2d4059;
    margin-bottom: 20px;
}

.company-section p {
    font-size: 1.1rem;
    max-width: 100%;
    color: #555;
    margin-bottom: 15px;
}

/* Our Goal Section */
.goals-section {
    margin-bottom: 60px;
}

.goals-section h2 {
    font-size: 2.5rem;
    color: #2d4059;
    margin-bottom: 40px;
}

.goals-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.goal-item {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.goal-item:hover {
    transform: translateY(-5px);
}

.goal-item i {
    font-size: 2.5rem;
    color: #4ecdc4;
    margin-bottom: 15px;
}

.goal-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2d4059;
}

/* Core Expertise Section */
.expertise-section {
    margin-bottom: 60px;
}

.expertise-section h2 {
    font-size: 2.5rem;
    color: #2d4059;
    margin-bottom: 40px;
}

.expertise-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.expertise-item {
    flex: 1;
    min-width: 250px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.expertise-img {
    height: 200px;
    background-color: #4ecdc4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}
/* Core Expertise Section - Image Styling */
.expertise-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Remove the icon styling since we're using images now */
.expertise-img i {
    display: none;
}

/* If you want to keep a fallback background color for images */
.expertise-img {
    background-color: #f8f9fa; /* Light fallback background */
}

.expertise-content {
    padding: 20px;
}

.expertise-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2d4059;
}

/* Why Choose Us Section */
.choose-us-section {
    margin-bottom: 60px;
}

.choose-us-section h2 {
    font-size: 2.5rem;
    color: #2d4059;
    margin-bottom: 30px;
}

.benefits-list {
    list-style-type: none;
    max-width: 800px;
}

.benefits-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
}

.benefits-list li:before {
    content: "★";
    color: #ff6b6b;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Cooperation Section */
.cooperation-section {
    margin-bottom: 60px;
}

.cooperation-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.cooperation-box {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.cooperation-box h2 {
    font-size: 1.8rem;
    color: #2d4059;
    margin-bottom: 20px;
}

.cooperation-box p {
    margin-bottom: 25px;
    color: #555;
}

.contact-btn {
    display: inline-block;
    padding: 12px 25px;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.contact-btn:hover {
    background: #52c0ff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-heading h1 {
        font-size: 2.5rem;
    }
    
    .goals-container, .expertise-container {
        flex-direction: column;
    }
    
    .cooperation-container {
        flex-direction: column;
    }
}