.about-container {
    display: flex;
    gap: 40px;
    margin-top: 20px;
}

.about-logo {
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    max-width: 250px;
    max-height: 250px;
}

.about-content {
    flex: 1;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-content h1 {
    margin-bottom: 30px;
    color: #333;
    font-size: 24px;
    font-weight: 600;
}

.company-intro,
.contact-info,
.other-info {
    margin-bottom: 30px;
}

.company-intro h2,
.contact-info h2,
.other-info h2 {
    margin-bottom: 15px;
    color: #333;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 2px solid #007bff;
    padding-bottom: 8px;
    display: inline-block;
}

.company-intro p {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #333;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 10px;
    color: #333;
    display: flex;
    align-items: center;
}

.contact-info li:before {
    content: "•";
    color: #007bff;
    font-weight: bold;
    margin-right: 10px;
}

.other-info p {
    margin-bottom: 8px;
    color: #666;
    font-size: 14px;
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        align-items: center;
    }
    
    .about-logo {
        width: 100%;
        max-width: 300px;
    }
    
    .about-content {
        width: 100%;
    }
}