/* Author Details Section */
.author-details {
    background-color: #f9f9f9;
    padding: 13px;
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    overflow: hidden;
}

body{
    overflow-x: hidden;
}

.author-details h3 {
    text-align:center;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    padding-top: 0px;
    padding-bottom: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
    
}

.author-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.author-pic {
    flex: 0 0 120px;
    border-radius: 50%;
    overflow: hidden;
    max-width: 120px;
    max-height: 120px;
    margin: 0 auto;
}

.author-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-text {
    flex: 1;
    padding: 10px;
}

.author-text h4 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.author-education {
    font-size: 16px;
    color: #666;
    font-style: italic;
    margin-bottom: 15px;
}

.author-bio {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 13px;
}

.linkedin-link {
    display: inline-block;
    background-color: #0077b5;
    color: #fff;
    padding: 6px 9px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.linkedin-link:hover {
    background-color: #005b8c;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .author-info {
        flex-direction: column;
        text-align: center;
    }
    
    .author-pic {
        margin-bottom: 15px;
    }

    .author-text h4 {
        font-size: 22px;
    }

    .author-education,
    .author-bio {
        font-size: 14px;
    }

    .linkedin-link {
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .author-details {
        padding: 20px;
    }

    .author-text h4 {
        font-size: 20px;
    }

    .author-education,
    .author-bio {
        font-size: 13px;
    }

    .linkedin-link {
        padding: 6px 10px;
    }
}

 .question-con{
        border-bottom: 1px solid black;
    padding-bottom: 9px;
    padding-top: 9px;
    }

    .question {
        font-weight: bold;
        font-size: 22px;
        margin-bottom: 10px;
        color:#0d0d66;
    }

    .answer {
       font-size: 17px;
    margin-bottom: 20px;
    padding-left: 20px;
    color: #333;
    line-height: 1.6;
    background: #ececec;
    padding: 8px;
    border-left: 3px solid #ffc107;
    border-radius: 6px;
    }

    /* Question Number Styling */
    .question-number {
        color: #ffc107;
        font-weight: bold;
    }
