/* About Page Styles - Similar to Blog/Journal */
.about-page .page-header {
    margin-bottom: 40px;
    padding-top: 20px;
}

.about-page .page-title {
    font-size: 32px;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.about-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 20px;
}

.about-text {
    text-align: center;
}

.about-text p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-text a {
    color: #000;
    text-decoration: underline;
}

.about-text a:hover {
    text-decoration: none;
}

.about-text ol,
.about-text ul {
    text-align: left;
    max-width: 90%;
    margin: 20px auto;
    padding-left: 20px;
}

.about-text li {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
}

.about-text strong {
    font-weight: 600;
}

.about-text em {
    font-style: italic;
}

/* Tablet */
@media (min-width: 768px) {
    .about-page .page-title {
        font-size: 40px;
    }
    
    .about-text p,
    .about-text li {
        font-size: 18px;
    }
}

/* Desktop */
@media (min-width: 992px) {
    .about-image {
        border-radius: 20px;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .about-image img {
        border-radius: 20px;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-text p,
    .about-text li {
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .about-page .page-header {
        margin-bottom: 30px;
        padding-top: 10px;
    }
    
    .about-content {
        gap: 30px;
    }
    
    .about-text p,
    .about-text li {
        font-size: 15px;
    }
}


