/* About Page Styles */
.about-page {
    min-height: calc(100vh - 10rem);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.container {
    margin: 0 auto;
    padding: 0 1rem;
}

.about-content {
    width: 100%;
}

.about-header {
    width: 100%;
}

.about-text-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    width: 100%;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text {
    font-size: 1.125rem;
    line-height: 1.8;
    width: 600px;
    margin: 0 auto;
    text-align: left;
}

.about-text p {
    margin-bottom: 1rem;
}

.about-text h1 {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    line-height: 1.2;
}

/* Dark Theme Styles */
.about-page.dark-theme {
    background-color: #1a1a1a;
    color: #ffffff;
}

.about-page.dark-theme .about-content {
    color: #e0e0e0;
}

.about-page.dark-theme .about-text {
    color: #cccccc;
}

.about-page.dark-theme .about-text h1 {
    color: #ffffff;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .about-text-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        order: -1;
    }

    .about-text {
        font-size: 1rem;
        width: 100%;
        max-width: 600px;
    }
}

@media (max-width: 767px) {
    .about-content {
        padding: 0 1.5rem;
    }
    
    .about-text {
        font-size: 1rem;
    }

    .about-text h1 {
        font-size: 2rem;
    }
} 