/* ABOUT SECTION */
#about {
    text-align: center;
    padding: 50px 20px;
    color: white;
}

#about h1 {
    font-size: 2.5rem;
    color: #ff4757;
    margin-bottom: 20px;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.about-text {
    max-width: 600px;
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: left;
    color: #ddd;
}

.about-image img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #ff4757;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Fun Facts Section */
#fun-facts {
    text-align: left;
    margin: auto;
    max-width: 950px;
    padding-top: 30px;
}

#fun-facts h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ff4757;
    margin-bottom: 20px;
}

#fun-facts ul {
    list-style-type: disc;
    margin-left: 20px;
    color: #ddd;
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }

    .about-image img {
        width: 200px;
        height: 200px;
    }
}

/* Values and Mission Section */
#values-mission {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, #1f1f1f, #292929);
    color: white;
}

#values-mission h2 {
    font-size: 2.5rem;
    color: #ff4757;
    margin-bottom: 20px;
}

.values-mission-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    gap: 40px;
}

.values, .mission {
    flex: 1;
    max-width: 400px;
    text-align: left;
}

.values h3, .mission h3 {
    font-size: 1.8rem;
    color: #ff4757;
    margin-bottom: 15px;
}

.values ul {
    list-style-type: none;
    padding-left: 0;
}

.values ul li {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #ddd;
}

.values ul li i {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    filter: brightness(0) invert(1);
}

.mission p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ddd;
    margin-top: 10px;
}

/* Call-to-Action Section */
#call-to-action {
    text-align: center;
    padding: 50px 20px;
    background: #121212;
    color: white;
}

#call-to-action h2 {
    font-size: 2.5rem;
    color: #ff4757;
    margin-bottom: 15px;
}

#call-to-action p {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    background: #ff4757;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}

.cta-buttons .btn:hover {
    background: #ff6b81;
    transform: translateY(-2px);
}

/* Mobile Design */
@media screen and (max-width: 768px) {
    .values-mission-container {
        flex-direction: column;
        align-items: center;
    }

    .values, .mission {
        max-width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
    }
}
