/* About Section */
.about {
    padding-top: 80px;
    padding-bottom: 80px;
}

.about-container {
    justify-content: center;
    align-items: center;
    text-align: center;
}

.about h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: #fdad01;
    margin-top: 0;
    margin-bottom: 56px;
    text-align: center;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.about h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 56px;
}

.about p {
    font-size: 1.125rem;
    padding: 0;
    text-align: left;
    max-width: 65ch;
    margin-left: auto;
    margin-right: auto;
}

.team-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 64px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.team-member {
    text-align: center;
    flex: 1;
    max-width: 480px;
}

.team-member img {
    width: 60%;
    height: auto;
    display: block;
    margin: 0 auto 32px;
    border-radius: 8px;
}

.team-member p {
    padding: 0;
}

.team-member h2 {
    font-size: 1rem;
    color: #333;
    margin-bottom: 8px;
    margin-top: 24px;
    font-weight: 400;
    letter-spacing: 0;
}

.team-member h3 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 1.75rem;
    color: #333;
    letter-spacing: -0.01em;
}

.bio {
    font-size: 1rem;
    color: #555;
    line-height: 1.65;
    padding: 0 24px;
    max-width: 60ch;
    margin: 0 auto;
}

.social-links {
    margin-top: 32px;
}

.social-links a {
    margin: 0 8px;
    text-decoration: none;
    color: #FDAD01;
    font-weight: 600;
}

.social-links a:hover {
    color: #111;
}

/* Services Section */
.services {
    text-align: center;
    background-color: #555;
    color: #fff;
    padding-bottom: 80px;
    padding-top: 80px;
}

.services p {
    color: #fff;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.125rem;
    line-height: 1.65;
}

.service-item {
    margin-bottom: 96px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px;
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-video-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 48px;
}

.service-video-container .paragraph-container {
    padding: 0;
    margin-bottom: 0;
    max-width: 800px;
    width: 100%;
}

.service-video {
    max-width: 100%;
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    display: block;
    margin: 0 auto 40px;
    border-radius: 8px;
}

.services h2 {
    font-size: 2.5rem;
    text-align: center;
}

.service-item h3 {
    font-size: 2.5rem;
    color: #FDAD01;
    margin-bottom: 0;
    margin-top: 0;
    letter-spacing: -0.01em;
}

/* Articles Section */
.articles-section {
    padding-top: 80px;
    padding-bottom: 80px;
    text-align: center;
}

.articles-section h2 {
    margin-bottom: 48px;
}

.articles-section .paragraph-container {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.articles-section p {
    text-align: center;
    margin-bottom: 40px;
}

.article-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    margin-top: 32px;
}

.article-links a {
    background-color: #FDAD01;
    border: none;
    color: #111;
    padding: 16px 40px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.01em;
    border-radius: 8px;
    transition: all 0.2s ease;
    max-width: 600px;
    width: 100%;
}

.article-links a:hover {
    background-color: #777;
    color: #FDAD01;
}



/* Media Queries for Home */


@media (max-width: 600px) {
    .about {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .bio {
        font-size: 1rem;
        color: #555;
        line-height: 1.65;
        padding: 0 16px;
    }

    .team-container {
        flex-direction: column;
        gap: 64px;
        padding: 0 24px;
    }

    .team-member {
        text-align: center;
        width: 100%;
        max-width: 100%;
    }

    .team-member img {
        width: 60%;
        height: auto;
        display: block;
        margin: 0 auto 24px;
    }


}