body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f3f2ed;
    font-size: 14px;
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.left-column {
    width: 100%;
    max-width: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.right-column {
    width: 100%;
    max-width: none;
}

.well {
    background-color: white;
    border-radius: 4px;
    border: 1px solid #d1d1d1;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

h1 {
    font-size: 2em;
    margin: 0 0 10px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #bbb;
}

.bio {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.bio-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

.bio-image-container {
    width: 100%;
    max-width: 150px;
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.bio-image-wrapper {
    border: none;
    border-radius: 50%;
    overflow: hidden;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.bio-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bio-text-container {
    width: 100%;
    text-align: center;
}

.bio img {
    width: 100%;
    height: auto;
    max-width: 360px;
}

.bio-text {
    width: 100%;
    text-align: left;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
    font-size: 14px;
}

.contact {
    width: 100%;
    text-align: center;
    margin-top: 0px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
}

.contact p {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    margin: 0;
}

.contact a {
    display: inline-block;
    padding: 8px 15px;
    background-color: #0072b1;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 300;
    transition: background-color 0.3s ease;
    font-size: 12px;
}

.linkedin-button {
    background-color: #0072b1;
}

.contact a:hover {
    opacity: 0.9;
}

.contact-icon {
    margin: 0 5px;
}

.contact-icon img {
    width: 24px;
    height: 24px;
}

.published-works,
.endorsements,
.reviews,
.academic-works,
.short-stories,
.media {
    padding: 20px;
    margin-top: 10px;
}

.published-works h2,
.endorsements h2,
.reviews h2,
.academic-works h2,
.short-stories h2,
.media h2 {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.book {
    display: flex;
    margin-top: 20px;
}

.book img {
    width: 165px;
    height: 250px;
    margin-right: 20px;
}

.book-description {
    flex: 1;
}

.book-details {
    font-size: 0.9em;
    margin-bottom: 10px;
}

.accordion {
    background: #f9f9f9;
}

.accordion-item {
    margin-bottom: 10px;
}

.accordion-header {
    padding: 10px;
    background: #f9f9f9;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

.accordion-header:hover {
    background: #e9e9e9;
}

.accordion-content {
    display: none;
    padding: 10px;
    background: #fff;
}

a {
    color: #0072b1;
}

.small-text {
    font-size: 0.8em;
    color: #666;
    font-weight: normal;
}

.accordion-indicator {
    font-size: 1.5em;
    color: #000;
    margin-left: 20px;
    margin-right:20px;
    font-weight: bold;
}

.footer-container {
    width: 100%;
    background-color: #f3f2ed;
}

.footer {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 10px 0;
    color: #333;
    font-size: 12px;
}

@media (min-width: 601px) {
    .container {
        width: 80%;
        max-width: 1200px;
        margin: 20px auto;
        display: flex;
        flex-direction: row;
        gap: 20px;
    }

    .left-column {
        width: 30%;
        max-width: 400px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .right-column {
        width: 70%;
        flex-grow: 1;
    }
}

@media (max-width: 600px) {
    .container {
        width: 95%;
        flex-direction: column;
    }

    .left-column, 
    .right-column {
        width: 100%;
        max-width: none;
    }

    .book {
        flex-direction: column;
        align-items: center;
    }
    .book img {
        margin-bottom: 20px;
    }
    .bio-content {
        align-items: center;
        text-align: center;
    }
    .bio-image-container {
        max-width: 250px;
    }
    .contact p {
        flex-wrap: nowrap;
    }
    .contact-icon img {
        width: 24px;
        height: 24px;
    }
    .well {
        margin-bottom: 10px;
    }
    .published-works,
    .endorsements,
    .reviews,
    .academic-works,
    .short-stories,
    .media {
        margin-top: 0;
    }
}

.bio-text-section {
    padding: 15px;
    margin-bottom: 10px;
    font-size: 14px;
}

.bio-text-section h1 {
    margin-top: 0;
}

.bio-name {
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    width: 100%;
    margin: 15px 0 5px 0;
    padding: 0;
    border-bottom: none;
}

.verified-icon {
    margin-left: 8px;
    display: inline-block;
    vertical-align: middle;
    fill: #0072b1;
    width: 24px;
    height: 24px;
}

.bio-subtitle {
    font-size: 12px;
    color: #666;
    margin: 0 0 15px 0;
    text-align: center;
    width: 100%;
}

.bio-text-section h2 {
    font-size: 2em;
    margin: 0 0 10px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #bbb;
}

h1, h2 {
    font-weight: 500;
}

p {
    font-size: 14px;
}

.published-works p,
.endorsements p,
.reviews p,
.academic-works p,
.short-stories p,
.media p,
.bio-text p {
    font-size: 14px;
}

/* Existing bio well horizontal rule style */
.bio .contact,
.bio .bio-text {
    width: 100%;
    border-top: 1px solid #ddd;
}

/* Apply same style to other sections */
.published-works h2,
.endorsements h2,
.reviews h2,
.academic-works h2,
.short-stories h2,
.media h2 {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 10px;
}