      /* About Content Section */
      .about-content {
        padding: 80px 0;
        background: #f9f9f9;
    }

    .about-text {
        font-size: 16px;
        line-height: 1.9;
        color: #666;
        text-align: center;
        max-width: 900px;
        margin: 0 auto 60px;
    }


    /* Author Section */
    .author-section {
        margin-bottom: 80px;
    }

    .author-card {
        background: white;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        overflow: hidden;
        transition: all 0.3s;
    }

    .author-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 30px rgba(0,0,0,0.15);
    }

    .author-image {
        width: 100%;
        height: 500px;
        object-fit: cover;
    }

    .author-info {
        padding: 40px;
    }

    .author-label {
        font-size: 12px;
        color: #999;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .author-name {
        font-size: 2.5rem;
        font-weight: 300;
        color: #333;
        margin-bottom: 10px;
    }

    .author-title {
        font-size: 14px;
        color: #666;
        font-style: italic;
        margin-bottom: 25px;
    }

    .author-bio {
        font-size: 15px;
        line-height: 1.8;
        color: #666;
        margin-bottom: 30px;
    }

    .btn-view-posts {
        background: #333;
        color: white;
        padding: 12px 35px;
        border: none;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        transition: all 0.3s;
        text-decoration: none;
        display: inline-block;
    }

    .btn-view-posts:hover {
        background: #555;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    /* Alternate Layout */
    .author-section.alternate .row {
        flex-direction: row-reverse;
    }

    /* Bottom Section */
    .bottom-content {
        padding: 60px 0;
        background: white;
    }

    .bottom-text {
        font-size: 16px;
        line-height: 1.9;
        color: #666;
        text-align: center;
        max-width: 900px;
        margin: 0 auto 40px;
    }

    /* Social Links */
    .social-links {
        text-align: center;
        padding: 40px 0;
    }

    .social-links a {
        display: inline-block;
        width: 40px;
        height: 40px;
        line-height: 40px;
        background: #3b5998;
        color: white;
        text-align: center;
        margin: 0 5px;
        border-radius: 3px;
        transition: all 0.3s;
        text-decoration: none;
    }

    .social-links a:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

    .social-links a.twitter {
        background: #1da1f2;
    }

    .social-links a.instagram {
        background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    }

    .social-links a.youtube {
        background: #ff0000;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .hero-title {
            font-size: 2.5rem;
        }

        .hero-subtitle {
            font-size: 0.9rem;
        }

        .author-name {
            font-size: 2rem;
        }

        .author-image {
            height: 350px;
        }

        .author-info {
            padding: 30px 20px;
        }