/* Global Font Family */
* {
    font-family: 'Poppins', sans-serif;
}

/* About Page Specific Styles */
.about_hero {
    padding: 180px 20px 100px;
    background-image: url('https://i.postimg.cc/R6tJMSVC/Frame-2147230323-(1).png');
    background-size: cover;
    /* background-position: center; */
    background-repeat: no-repeat;
    text-align: left;
}

.about_hero_container {
    max-width: 1300px;
    margin: 0 auto;
}

.about_hero h1 {
    font-size: 48px;
    font-weight: 500;
    color: #021318;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -3px;
    max-width: 800px;
}

.about_hero h1 span {
    font-weight: 300;
}

.about_hero h1 span.dot {
    color: #F86F11;
}

.about_hero p {
    font-size: 18px;
    color: #626262;
    max-width: 550px;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* Team Group Image */
.team_group_image {
    width: 100%;
}

.group_image_container {
    width: 100%;
    margin: 0;
}

.group_image_container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Talent Section */
.talent_section {
    padding: 100px 5%;
    background-color: #fff;
}

.talent_container {
    max-width: 1300px;
    margin: 0 auto;
}

.talent_container h2 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 60px;
    line-height: 1.2;
    color: #021318;
}

.talent_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.talent_card {
    background: #fff;
    border-radius: 4px;
    padding: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    text-align: left;
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.talent_card:hover {
    transform: translateY(-5px);
}

.talent_card_image {
    width: 100%;
    aspect-ratio: 1.1;
    overflow: hidden;
    margin-bottom: 20px;
    background: #0d1117;
}

.talent_card_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.talent_card_body {
    padding: 10px 15px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.talent_card h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #021318;
}

.talent_card p {
    color: #999999;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 20px;
}

.talent_card_footer {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
}

.talent_card_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 45px;
    border: 1px solid #f0e6dd;
    color: #f0e6dd;
    text-decoration: none;
    transition: all 0.3s ease;
}

.talent_card.highlight .talent_card_btn {
    background: linear-gradient(135deg, #1a1a1a 0%, #a8521a 100%);
    color: #fff;
    border: none;
}

.talent_card_btn svg {
    width: 20px;
    height: 20px;
}

/* Team Section */
.team_section {
    padding: 100px 5%;
    background-color: #FFFFFF;
}

.team_container {
    max-width: 1300px;
    margin: 0 auto;
}

.team_container h2 {
    font-size: 48px;
    font-weight: 400;
    color: #021318;
    margin-bottom: 60px;
}

.team_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.team_member {
    text-align: center;
    background: #F6F6F6;
}

.member_image {
    background-color: #FEEEE3;
    width: 100%;
    aspect-ratio: 0.9;
    overflow: hidden;
}

.member_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member_info {
    padding: 15px 10px;
}

.member_info h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 4px;
    color: #021318;
}

.member_info p {
    color: #161616;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Call to Action Section */
.cta_section {
    padding: 120px 5%;
    background-color: #000;
    color: #fff;
    text-align: center;
    border-bottom: 1px solid #333;
}

.cta_content h2 {
    font-size: 96px;
    font-weight: 500;
    margin-bottom: 60px;
    color: #F86F11;
    letter-spacing: -3px;
    line-height: 1;
}

.cta_content h2 span {
    font-weight: 100;
}

.cta_button {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: #000;
    padding: 18px 45px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 500;
    gap: 15px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta_button:hover {
    background: #F86F11;
    color: #fff;
}

@media (max-width: 1024px) {

    .talent_grid,
    .team_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about_hero h1 {
        font-size: 40px;
    }

    .talent_grid,
    .team_grid {
        grid-template-columns: 1fr;
    }

    .talent_container h2,
    .team_container h2,
    .cta_content h2 {
        font-size: 32px;
    }

    .cta_content h2 {
        font-size: 48px;
        letter-spacing: -1px;
    }
}