.about-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 30px;
    color: #f0f0f0;
}

.about-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-header h1 {
    font-size: 32px;
    color: #ffcc00;
}

.about-header p {
    font-size: 16px;
    color: #ccc;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    margin-bottom: 40px;
}

.about-text {
    flex: 1;
    min-width: 280px;
}

.about-text h2 {
    color: #ffcc00;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

.about-values {
    margin-top: 30px;
}

.about-values h2 {
    color: #ffcc00;
    margin-bottom: 20px;
}

.about-values ul {
    list-style: none;
    padding: 0;
}

.about-values li {
    margin-bottom: 10px;
    font-size: 15px;
}

.about-values i {
    color: #ffcc00;
    margin-right: 8px;
}
@media (max-width: 768px) {
    .about-content{
        display: block;
    }
    .footer{
        margin-top: 0px !important;
    }
}