 .author-section {
    background-color: #008672;
            padding: 60px 0;
        }
        .author-section h1 {
            color: #fff;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 40px;
        }
        .author-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 20px;
            justify-items: center;
        }
        .author-item {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 140px;
            height: 140px;
            position: relative;
        }
        .author-item img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 50%;
        }
        @media (max-width: 768px) {
            .author-section h1 {
                font-size: 2.5rem;
            }
             .author-grid {
                grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            }
            .author-item {
                width: 100px;
                height: 100px;
            }
        }
        @media (max-width: 576px) {
            .author-section h1 {
                font-size: 2rem;
            }
             .author-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
             .author-item {
                width: 120px;
                height: 120px;
            }
        }







         .stories-section {
            padding: 60px 0;
        }
        .stories-heading {
            text-align: center;
            margin-bottom: 50px;
            font-size: 2.5rem;
            font-weight: 700;
            color: #343a40;
        }
        .story-card {
            background-color: #f7f6f2;
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }
        .story-content {
            flex: 1;
            padding-right: 40px;
        }
        .story-author {
            color: #198754;
            font-weight: 700;
            margin-bottom: 10px;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
        }
        .story-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #212529;
        }
        .story-highlights {
            list-style: none;
            padding-left: 0;
        }
        .story-highlights li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 15px;
            color: #495057;
        }
        .story-highlights li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #198754;
            font-weight: bold;
            font-size: 1.2rem;
            line-height: 1;
        }
        .story-image-wrapper {
            flex-shrink: 0;
            position: relative;
            width: 300px;
            height: 300px;
        }
        .story-image-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #e9ecef;
            border-radius: 50%;
        }
        .story-author-image {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 280px;
            height: 280px;
            border-radius: 50%;
            object-fit: cover;
        }
        .story-book-image {
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            filter: drop-shadow(0px 10px 20px rgba(0,0,0,0.1));
        }
        @media (max-width: 991.98px) {
            .story-card {
                flex-direction: column;
                text-align: center;
            }
            .story-content {
                padding-right: 0;
                order: 2;
                margin-top: 30px;
            }
            .story-image-wrapper {
                order: 1;
            }
            .story-highlights {
                text-align: left;
                display: inline-block;
            }
        }
        @media (max-width: 767.98px) {
            .story-title {
                font-size: 2rem;
            }
            .story-image-wrapper {
                width: 250px;
                height: 250px;
            }
            .story-author-image {
                width: 230px;
                height: 230px;
            }
            .story-book-image {
                width: 120px;
            }
        }