/* About Page Styles */
.about-page-wrapper {
    padding-top: 80px;
    padding-bottom: 80px;
    min-height: calc(100vh - 100px);
    background-color: #072720;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-visuals {
    position: relative;
    min-height: 500px;
}

.about-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    object-fit: cover;
    object-position: right;
    aspect-ratio: 3/4;
}

.about-content h1 {
    font-size: 48px;
    font-weight: 400;
    margin: 0 0 24px 0;
    color: #fff;
}

.about-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #99b3ad;
    margin-bottom: 24px;
}

.about-services-section {
    margin-top: 40px;
}

.about-services-section h2 {
    font-size: 32px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 24px;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}

.service-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 16px;
    border-radius: 8px;
    color: #fff;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.service-item:hover {
    transform: translateY(-4px);
    background-color: rgba(54, 244, 164, 0.1);
    border-color: #36f4a4;
}

.location-info {
    margin-top: 40px;
    padding: 24px;
    background-color: rgba(6, 26, 28, 0.8);
    border-radius: 12px;
    border-left: 4px solid #36f4a4;
}

.location-info h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 12px;
}

.location-info p {
    margin-bottom: 0;
}

.about-youtube-cta {
    margin-top: 32px;
    padding: 20px;
    background-color: rgba(6, 26, 28, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: grid;
    gap: 16px;
}

.about-youtube-cta h3 {
    color: #fff;
    font-size: 22px;
    margin: 0;
}

.about-youtube-text {
    margin: 0;
}

.about-youtube-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
}

.about-youtube-btn svg {
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-visuals {
        min-height: auto;
    }
}

