body {
    background: #f8f9fa;
}

.about-section {
    padding-top: 120px;
    padding-bottom: 80px;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #32325d;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 15px;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: #3b9dd8;
}

.author-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.author-photo {
    width: 140px;
    height: 180px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid #e9ecef;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    flex-shrink: 0;
}

.author-photo-placeholder {
    width: 140px;
    height: 180px;
    border-radius: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    border: 2px solid #e9ecef;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    flex-shrink: 0;
    overflow: hidden;
}

.author-photo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #32325d;
    margin-bottom: 8px;
}

.author-title {
    font-size: 1rem;
    color: #495057;
    font-weight: 400;
    margin: 0;
    line-height: 1.6;
}

.content-section {
    background: #fff;
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.content-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #32325d;
    margin: 40px 0 20px 0;
    position: relative;
    padding-left: 20px;
}

.content-section h2:first-child {
    margin-top: 0;
}

.content-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 30px;
    background: #3b9dd8;
    border-radius: 3px;
}

.content-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
    text-align: justify;
}

.highlight-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid #3b9dd8;
    padding: 25px 30px;
    border-radius: 8px;
    margin: 30px 0;
}

.highlight-box ul {
    margin: 15px 0 0 0;
    padding-left: 25px;
}

.highlight-box li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 12px;
}

.goal-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 35px;
    border-radius: 15px;
    margin: 40px 0;
    text-align: center;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.goal-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.goal-box p {
    font-size: 1.1rem;
    margin: 0;
    color: rgba(255,255,255,0.95);
}

.w3l-footer-29-main {
    margin-top: 0;
}

@media (max-width: 991px) {
    .content-section {
        padding: 30px 20px;
    }
}

@media (max-width: 767px) {
    .page-title {
        font-size: 2rem;
    }

    .author-card {
        flex-direction: column;
        text-align: center;
    }

    .author-photo,
    .author-photo-placeholder {
        width: 120px;
        height: 150px;
    }

    .author-name {
        font-size: 1.5rem;
    }

    .content-section h2 {
        font-size: 1.4rem;
    }
}
