* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    background: #f9f9f9;
}

header {
    background: #588C87;
    color: white;
    padding: 60px 20px;
    text-align: center;
    width: 100%;
}

header h1 {
    font-size: 56px;
    font-weight: bold;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

header p {
    font-size: 22px;
    font-style: italic;
    opacity: 0.95;
}
header a {
    color: white;
    text-decoration: none;
}

header a:hover {
    color: #FFFDD0;
}

.bio-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 40px;
    background: white;
    border-left: 6px solid #588C87;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.bio-image {
    width: 750px;
    height: 519px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.bio-text {
    flex: 1;
}

.bio-text h2 {
    color: #588C87;
    margin-bottom: 20px;
    font-size: 32px;
}

.bio-text p {
    margin-bottom: 15px;
    font-size: 18px;
    color: #555;
}

.articles-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.article-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid #588C87;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 25px rgba(0,0,0,0.12);
}

.article-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 22px;
    line-height: 1.4;
}

.article-card h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}

.article-card h3 a:hover {
    color: #588C87;
}

.article-excerpt {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    color: #00CED1;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
}

.read-more:hover {
    text-decoration: underline;
}

footer {
    background: #588C87;
    width: 100%;
    padding: 50px 20px;
    margin-top: 60px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.map-box {
    width: 280px;
    height: 240px;
    border: 3px solid white;
    border-radius: 10px;
    overflow: hidden;
}

.footer-middle {
    text-align: center;
    color: white;
    flex: 1;
    padding: 0 40px;
}

.footer-middle p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.social-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-icons a {
    width: 55px;
    height: 55px;
    background: white;
    color: #588C87;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    transition: transform 0.2s;
}

.social-icons a:hover {
    transform: scale(1.1);
}
.article-content {
    max-width: 900px;
    margin: 50px auto;
    padding: 40px;
    background: white;
    line-height: 1.8;
}

.article-content h1 {
    color: #588C87;
    font-size: 36px;
    margin-bottom: 30px;
    line-height: 1.3;
}

.article-content h2 {
    color: #588C87;
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.article-content p {
    margin-bottom: 20px;
    font-size: 18px;
    color: #333;
}
.explore-more {
    max-width: 900px;
    margin: 50px auto 0;
    padding: 30px 0;
    border-top: 2px solid #588C87;
}

.explore-more h3 {
    color: #588C87;
    font-size: 24px;
    margin-bottom: 20px;
}

.bubble-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.article-bubble {
    display: inline-block;
    padding: 12px 20px;
    background: #f0f0f0;
    border: 2px solid #588C87;
    border-radius: 25px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
}

.article-bubble:hover {
    background: #588C87;
    color: white;
}
.article-content a {
    color: #588C87;
    text-decoration: none;
}

.article-content a:hover {
    color: #FFFDD0;
}

.article-content a:visited {
    color: #588C87;
}
/* Add this CSS to style.css for the new addresses row */

.footer-addresses {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    padding: 30px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 20px;
}

.address-box h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 10px;
}

.address-box p {
    color: white;
    line-height: 1.8;
    font-size: 14px;
    margin: 0;
}

.address-map iframe {
    border-radius: 5px;
}

@media (max-width: 768px) {
    .footer-addresses {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
.bio-text a {
    color: #588C87;
    text-decoration: none;
}
.bio-text a:hover {
    color: #FFFDD0;
}
.bio-text a:visited {
    color: #588C87;
}
.address-box {
    text-align: center;
}
.video-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.video-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    border-top: 4px solid #588C87;
}

.video-card h2 {
    color: #588C87;
    font-size: 28px;
    margin-bottom: 25px;
    text-align: center;
}

.video-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}
.video-card h2 {
    margin-top: 0;  /* Remove the extra margin */
}