 /* About Section Styles */
 .about-section {
    padding: 5rem 0;
    background-color: #f9fafb;
}


@media (min-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    transition: all 0.7s;
    opacity: 0;
    transform: translateY(2.5rem);
}

@media (min-width: 768px) {
    .about-title {
        font-size: 2.25rem;
    }
}

.about-subtitle {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 48rem;
    margin: 0 auto;
    transition: all 0.7s;
    transition-delay: 0.1s;
    opacity: 0;
    transform: translateY(2.5rem);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
}

.about-image-container {
    transition: all 0.7s;
    transition-delay: 0.2s;
    opacity: 0;
    transform: translateX(-2.5rem);
}

.about-image-wrapper {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-gradient {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 1), transparent);
    opacity: 0.6;
}

.about-image-text {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1.5rem;
    color: white;
}

.about-image-title {
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.about-locations {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.about-location {
    margin-right: 0;
}

.about-location-divider {
    border-left: 1px solid white;
    padding-left: 2rem;
}

.about-location-name {
    font-weight: 700;
    font-size: 1.125rem;
}

.about-location-type {
    font-size: 0.875rem;
}

.about-info {
    transition: all 0.7s;
    transition-delay: 0.3s;
    opacity: 0;
    transform: translateX(2.5rem);
}

.about-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.about-info-text {
    color: #4b5563;
    margin-bottom: 2rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
}

.about-feature-icon {
    background-color: #d1fae5;
    padding: 0.75rem;
    border-radius: 9999px;
    color: #0d9488;
    margin-right: 1rem;
    display: inline-flex;
}

.about-feature-content h4 {
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.25rem 0;
}

.about-feature-content p {
    color: #4b5563;
    margin: 0;
}

/* Animation class */
.in-view {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}
