.hero-section {
    width: 100%;
    min-height: 946px;
    top: 0;
    left: 0;
    padding: 70px 20px 40px 20px;
}

.hero-section .hero-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 5vw;
}

.hero-text-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.hero-section .hero-content .hero-title {
    font-family: Londrina Solid;
    font-weight: 300;
    font-style: Light;
    font-size: 28px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #52636C;
}

.hero-section .hero-content .subtitle {
    font-family: Londrina Solid;
    font-weight: 400;
    font-style: Regular;
    font-size: 96px;
    leading-trim: NONE;
    line-height: 90%;
    letter-spacing: 2%;
    text-transform: uppercase;
    background: linear-gradient(111.33deg, #F04247 11.06%, #782B90 73.94%);
    max-width: 555px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    padding-top: 36px;
}

.hero-section .hero-content .hero-text {
    font-family: Londrina Solid;
    font-weight: 300;
    font-style: Light;
    font-size: 32px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 1%;
    text-transform: uppercase;
    color: #52636C;
    max-width: 499px;
    margin-top: 36px;
}


.hero-section .hero-content .hero-button {
    text-decoration: none;
    font-family: Londrina Solid;
    font-weight: 400;
    font-style: Regular;
    font-size: 28px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #fff;
    background-color: #F25C2D;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    margin-top: 56px;
    max-width: 385px;
    border-radius: 600px;
    padding:24px 45px;
}

.hero-section .hero-content .hero-button:hover {
    background-color: #44ab4c;
    color: #000;
}


.hero-section .hero-content .hero-users-statistics {
    margin-top: 53px;
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.hero-section .hero-content .hero-users-statistics img {
    object-fit: scale-down;
}

.hero-section .hero-content .users-count {
    font-family: Londrina Solid;
    font-weight: 300;
    font-style: Light;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 1%;
    text-transform: uppercase;
    color: #52636C;
    max-width: 241px;
}

.hero-image-container {
    width: 50vw;
    max-width: 858px;
    height: 946px;
    position: absolute;
    top: 0;
    right: 0;
    padding-right: 16px;
    z-index: 1;
}

.hero-image-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 2;
}

@media (min-width: 1632px) {
    .hero-image-container {
        width: 858px;
    }
}

@media (min-width: 1025px) and (max-width: 1522px) {
    .hero-text-content {
        margin-top: 120px;
    }
}

@media (max-width: 1024px) {
    .hero-text-content {
        margin-top: 45px;
    }
}

@media (max-width: 1085px) {
    .hero-image-container {
        display: none;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 1fr);
    grid-gap: 21px;
    width: 100%;
    height: 100%;
}


.hero-grid .div2 { 
    grid-area: 1 / 1 / 2 / 2; 
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    background: #007DC51A;
}

.hero-grid .div3 { 
    grid-area: 2 / 1 / 5 / 2; 
    border-radius: 24px;
    background: url(../../assets/images/home/hero-grid-image.png) no-repeat center center;
    background-size: cover;
    position: relative;
}

.hero-grid .div4 { 
    grid-area: 5 / 1 / 6 / 2; 
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    background: #41AD4933;
}

.hero-grid .div5 { 
    grid-area: 1 / 2 / 3 / 3;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    background: linear-gradient(180deg, #F04544 0%, #EE1874 100%);
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-grid .div5 .div5-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../../assets/images/home/hero-gradiente-div2.png) no-repeat center center;
    background-size: cover;
}

.hero-grid .div6 { 
    grid-area: 3 / 2 / 6 / 3;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    background: #F8F4DF;
    position: relative;
    overflow: hidden;
}

.hero-grid .div6 .div6-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../../assets/images/home/hero-grid-div-6.png) no-repeat center center;
    background-size: cover;
}



.section-program-home {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    margin-top: 92px;
}

.section-program-home .section-program-container {
    max-width: 1216px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.section-program-container-image {
    
}

.section-program-container-image .program-image {
    width: 500px;
    height: 378px;
    border-radius: 24px;
    margin-top: -28px;
}

.program-info-icons {
    margin-top: 76px;
    display: flex;
    flex-direction: row;
    gap: 16px;
}

@media (max-width: 768px) {
    .program-info-icons {
        margin-top: 30px;
        gap: 10px;
    }
}

.program-info-icons .program-img-icons-count {}

.program-info-icons .program-info-text {
    max-width:134px;
    font-family: Londrina Solid;
    font-weight: 300;
    font-style: Light;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 1%;
    text-transform: uppercase;
    color: #52636C;
}

.section-program-container-image .program-button {
    margin-top: 39px;
    text-decoration: none;
    font-family: Londrina Solid;
    font-weight: 400;
    font-style: Regular;
    font-size: 28px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 0%;
    text-transform: uppercase;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-offset: 0%;
    text-decoration-thickness: 0%;
    text-decoration-skip-ink: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 19px;
    color: #F25D2B;

}

/* Mobile versions - hidden by default */
.program-info-icons-mobile,
.program-button-mobile {
    display: none;
}

/* Mobile-specific styles that inherit from desktop versions */
.program-info-icons-mobile {
    margin-top: 76px;
    flex-direction: row;
    gap: 16px;
}

.program-info-icons-mobile .program-info-text {
    max-width: 134px;
    font-family: Londrina Solid;
    font-weight: 300;
    font-style: Light;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 1%;
    text-transform: uppercase;
    color: #52636C;
}

.program-button-mobile {
    margin-top: 39px;
    text-decoration: none;
    font-family: Londrina Solid;
    font-weight: 400;
    font-style: Regular;
    font-size: 28px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 0%;
    text-transform: uppercase;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-offset: 0%;
    text-decoration-thickness: 0%;
    text-decoration-skip-ink: auto;
    align-items: center;
    justify-content: flex-start;
    gap: 19px;
    color: #F25D2B;
}

.section-program-container-text {
    max-width: 601px;
}

.section-program-container-text .section-program-title {
    font-family: Londrina Solid;
    font-weight: 300;
    font-style: Light;
    font-size: 28px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 0%;
    text-transform: uppercase;
    background: linear-gradient(168.33deg, #F04247 -2.94%, #782B90 34.94%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-program-container-text .section-program-subtitle-1 {
    font-family: Londrina Solid;
    font-weight: 400;
    font-style: Regular;
    font-size: 64px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #071F2C;
    margin-top: 16px;
}

.section-program-container-text .section-program-subtitle-2 {
    font-family: Londrina Solid;
    font-weight: 300;
    font-style: Light;
    font-size: 32px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 2%;
    text-transform: uppercase;
    color: #52636C;
    margin-top: 48px;
}

.section-program-container-text  .section-program-text {
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 160%;
    letter-spacing: 0%;
    color:#071F2CB2;
    margin-top: 48px;
}

.numbers-section {
    width: 100%;
    margin-top: 180px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
}

.numbers-section .numbers-container {
    max-width: 1216px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.numbers-section .number-section-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.numbers-section .number-section-header .numbers-title {
    font-family: Londrina Solid;
    font-weight: 300;
    font-style: Light;
    font-size: 28px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #52636C;
    background: linear-gradient(111.33deg, #F04247 11.06%, #782B90 73.94%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.numbers-section .number-section-header .numbers-subtitle {
    font-family: Londrina Solid;
    font-weight: 400;
    font-style: Regular;
    font-size: 64px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #071F2C;
    max-width: 500px;
    margin-top: 16px;
}

.numbers-section .number-section-header .number-section-text {
    font-family: Londrina Solid;
    font-weight: 300;
    font-style: Light;
    font-size: 32px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #52636C;
    margin-top: 32px;
}

.section-number-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;
    grid-gap: 32px;
    margin-top: 64px;
    border: 1px solid #BABABA;
    border-left: none;
    border-right: 0;
    padding-top: 64px;
    padding-bottom: 64px;
}

.section-number-list  .number-item {
    display: flex;
    flex-direction:row;
    gap: 24px;
}

.section-number-list  .number-item .number-item-image {
    width: 36px;
    height: 36px;
}

.section-number-list  .number-item .number-item-container {

}

.section-number-list  .number-item .number-title {
    font-family: Londrina Solid;
    font-weight: 300;
    font-style: Light;
    font-size: 96px;
    leading-trim: NONE;
    line-height: 90%;
    letter-spacing: 0%;
    text-transform: uppercase;
    background: linear-gradient(111.33deg, #F04247 11.06%, #782B90 73.94%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-number-list  .number-item .number-text {
    font-family: Londrina Solid;
    font-weight: 300;
    font-style: Light;
    font-size: 32px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #52636C;
    margin-top: 30px;
    max-width: 315px;
}

.map-section-home {
    width: 100%;
    margin-top: 135px;
}

.map-section-home .map-container {
    max-width: 1216px;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.map-section-home .map-container .map-title {
    font-family: Londrina Solid;
    font-weight: 400;
    font-style: Regular;
    font-size: 36px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #071F2C;
    max-width: 467px;
}

.map-section-home .map-container .map-wrapper {
    position: relative;
    display: inline-block;
    margin-top: 80px;
}

.map-section-home .map-container .map-image {
    display: block;
    cursor: pointer;
}

/* Map Tooltip */
.map-tooltip {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 24px;
    min-width: 320px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.map-wrapper:hover .map-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.map-tooltip-state {
    font-family: Londrina Solid;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    text-transform: uppercase;
    color: #071F2C;
    margin: 0 0 16px 0;
    border-bottom: 1px solid #E5E5E5;
    padding-bottom: 12px;
}

.map-tooltip-projects {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.map-tooltip-project {
    padding: 12px 0;
}

.map-tooltip-project:not(:last-child) {
    border-bottom: 1px solid #F5F5F5;
}

.map-tooltip-project-title {
    font-family: Londrina Solid;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    text-transform: uppercase;
    color: #F04247;
    margin: 0 0 8px 0;
}

.map-tooltip-institution {
    font-family: Inter;
    font-weight: 600;
    font-size: 14px;
    line-height: 140%;
    color: #071F2C;
    margin: 0 0 4px 0;
}

.map-tooltip-location {
    font-family: Inter;
    font-weight: 400;
    font-size: 12px;
    line-height: 140%;
    color: #52636C;
    margin: 0;
}


.home-project-section {
    width: 100%;
    margin-top: 108px;
    overflow: hidden;
    background-color: #fff;
}

.home-project-section .home-project-section-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.home-project-section-container-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.home-project-section .home-project-section-container .project-title {
    font-family: Londrina Solid;
    font-weight: 300;
    font-style: Light;
    font-size: 28px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 0%;
    text-transform: uppercase;
    background: linear-gradient(111.33deg, #F04247 11.06%, #782B90 73.94%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 16px;
    text-align: center;
}

@media (max-width: 768px){
    .home-project-section .home-project-section-container .project-title {
        font-size: 16px;
    }
}

.home-project-section .home-project-section-container .project-subtitle {
    font-family: Londrina Solid;
    font-weight: 400;
    font-style: Regular;
    font-size: 64px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    color: #071F2C;    
    max-width: 500px;
    margin-top: 16px;
    text-align: center;
}

@media (max-width: 768px){
    .home-project-section .home-project-section-container .project-subtitle {
        font-size: 36px;
        max-width: 328px;
    }
}

.project-carousel {
    margin-top: 64px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.project-carousel .project-item {
    padding: 30px 20px;
    outline: none;
    height: auto;
    margin: 0 15px;
    background-color: #FF7887;
    border-radius: 24px;
    min-height: 466px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.project-carousel .project-image {
    width: 178px;
    height: 154px;
    object-fit: cover;
    border-radius: 24px;
    margin-bottom: 24px;
}

.project-carousel .project-name {
    font-family: Londrina Solid;
    font-weight: 400;
    font-style: Regular;
    font-size: 32px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #071F2C;
    margin-top: 63px;
    max-width: 274px;
}

.project-carousel .project-description {
    font-family: Londrina Solid;
    font-weight: 300;
    font-style: Light;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #fff;
    max-width: 193px;
}

.bottom-content {
    width: 100%;
    margin-top:50px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-section {
        padding: 120px 16px 40px 16px;
        min-height: auto;
    }
    
    .hero-section .hero-content {
        flex-direction: column;
        gap: 60px;
    }
    
    .hero-text-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-section .hero-content .subtitle {
        font-size: 72px;
        max-width: 100%;
    }
    
    .hero-image-container {
        width: 50vw;
        max-width: 500px;
        height: 700px;
        position: fixed;
        top: 0;
        right: 0;
    }
    
    .section-program-home .section-program-container {
        flex-direction: column-reverse;
        gap: 44px;
        padding: 0 16px;
    }
    
    .section-program-home .section-program-container-image {
        order: 2;
    }
    
    .section-program-container-text {
        order: 1;
    }
    
    .numbers-container {
        padding: 0 16px;
    }
    
    .map-container {
        padding: 0 16px;
    }
    
    .home-project-section-container {
        padding: 0 16px;
    }
    
    .section-number-list {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 24px;
    }
    
    .project-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 32px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 41px 16px 40px 16px;
        min-height: auto;
    }
    
    .hero-section .hero-content {
        flex-direction: column;
        gap: 0px;
    }
    
    .hero-text-content {
        text-align: left;
    }
    
    .hero-section .hero-content .hero-title {
        font-size: 24px;
    }
    
    .hero-section .hero-content .subtitle {
        font-size: 48px;
        margin-top: 20px;
    }
    
    .hero-section .hero-content .hero-text {
        font-size: 20px;
        max-width: 100%;
    }
    
    .hero-section .hero-content .hero-button {
        font-size: 20px;
        max-width: 100%;
        padding: 18px 36px;
        margin-top: 36px;
    }

    .hero-section .hero-content .hero-users-statistics {
        margin-top: 30px;
        align-items: center;
    }
    
    .hero-section .hero-content .users-count {
        font-size: 16px;
        text-align: left;
        max-width: 200px;
    }
    
    .hero-users-statistics {
        justify-content: flex-start;
    }
    
    .hero-image-container {
        width: 50vw;
        max-width: 500px;
        height: 700px;
        position: fixed;
        top: 0;
        right: 0;
    }
    
    /* Hide desktop versions on mobile */
    .section-program-container-image .program-info-icons,
    .section-program-container-image .program-button {
        display: none;
    }
    
    /* Show mobile versions on mobile */
    .program-info-icons-mobile,
    .program-button-mobile {
        display: flex;
    }
    
    .program-info-icons-mobile {
        margin-top: 54px;
        gap: 10px;
    }
    
    .program-button-mobile {
        font-size: 24px;
    }
    
    
    .section-program-container {
        flex-direction: column;
        gap: 40px;
        padding: 0 16px;
    }
    
    .section-program-container-image {
        order: 2;
        width: 100%;
    }
    
    .section-program-container-text {
        order: 1;
        width: 100%;
    }
    
    .section-program-home {
        margin-top: 81px;
    }
    
    .section-program-container-image .program-image {
        width: 100%;
        height: 350px;
    }
    
    .section-program-container-image .program-button {
        font-size: 24px;
    }
    
    .section-program-container-text {
        max-width: 100%;
    }
    
    .section-program-container-text .section-program-title {
        font-size: 24px;
    }
    
    .section-program-container-text .section-program-subtitle-1 {
        font-size: 38px;
    }
    
    .section-program-container-text .section-program-subtitle-2 {
        font-size: 28px;
        margin-top: 20px;
    }
    
    .section-program-container-text .section-program-text {
        font-size: 18px;
        margin-top: 15px;
    }
    
    .numbers-section {
        margin-top: 80px;
    }
    
    .numbers-container {
        padding: 0 16px;
    }
    
    .numbers-section .number-section-header .numbers-subtitle {
        font-size: 38px;
        max-width: 100%;
    }
    
    .numbers-section .number-section-header .number-section-text {
        font-size: 24px;
        max-width: 100%;
    }
    
    .section-number-list {
        grid-template-columns: 1fr;
        grid-gap: 32px;
        margin-top: 48px;
        padding-top: 48px;
        padding-bottom: 48px;
    }
    
    .map-container {
        padding: 0 16px;
    }
    
    .home-project-section-container {
        padding: 0 16px;
    }
    
    .home-project-section-container-header-title {
        font-size: 38px;
    }
    
    .project-grid {
        grid-template-columns: 1fr;
        grid-gap: 24px;
    }
    
    .project-carousel .project-name {
        font-size: 22px;
        margin-top: 5px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding-top: 0px;
    }
    
    .hero-section .hero-content {
        padding-left: 16px;
        padding-right: 16px;
        gap: 32px;
    }
    
    .hero-section .hero-content .hero-title {
        font-size: 24px;
    }
    
    .hero-section .hero-content .subtitle {
        font-size: 40px;
    }
    
    .hero-section .hero-content .hero-text {
        font-size: 20px;
    }
    
    .hero-section .hero-content .hero-button {
        font-size: 20px;
        padding: 16px 32px;
    }
    
    .hero-section .hero-content .users-count {
        font-size: 16px;
    }
    
    .section-program-container {
        flex-direction: column;
        padding: 0 16px;
        gap: 32px;
    }
    
    .section-program-container-image {
        order: 2;
        width: 100%;
    }
    
    .section-program-container-text {
        order: 1;
        width: 100%;
    }
    
    .section-program-container-text .section-program-title {
        font-size: 20px;
    }
    
    .section-program-container-text .section-program-subtitle-1 {
        font-size: 32px;
    }
    
    .section-program-container-text .section-program-subtitle-2 {
        font-size: 24px;
    }
    
    .section-program-container-text .section-program-text {
        font-size: 16px;
    }
    
    .numbers-section {
        margin-top: 80px;
    }
    
    .numbers-container {
        padding: 0 16px;
    }
    
    .numbers-title {
        font-size: 16px;
    }
    
    .numbers-section .number-section-header .numbers-subtitle {
        font-size: 36px;
    }
    
    .numbers-section .number-section-header .number-section-text {
        font-size: 17px;
    }
    
    .section-number-list {
        margin-top: 32px;
        padding-top: 32px;
        padding-bottom: 32px;
        grid-gap: 24px;
    }
    
    .section-number-list  .number-item .number-title {
        font-size: 64px;
        margin: 0;
    }
    
    .section-number-list  .number-item .number-text {
        font-size: 17px;
        margin: 0;
        margin-top: 12px;
    }
    
    .map-container {
        padding: 0 16px;
    }
    
    .map-title {
        font-size: 28px;
    }
    
    .map-tooltip {
        min-width: 280px;
        padding: 20px;
        top: 10px;
        left: 10px;
    }
    
    .map-tooltip-state {
        font-size: 16px;
    }
    
    .map-tooltip-project-title {
        font-size: 14px;
    }
    
    .map-tooltip-institution {
        font-size: 13px;
    }
    
    .map-tooltip-location {
        font-size: 11px;
    }
    
    .home-project-section-container {
        padding: 0 16px;
    }
    
    .home-project-section-container-header-title {
        font-size: 36px;
    }
    
    .project-carousel .project-description {
        font-size: 16px;
    }
}

/* Responsive padding for containers with max-width 1216px */
@media (max-width: 1216px) {
    .hero-section .hero-content,
    .section-program-home .section-program-container,
    .numbers-section .numbers-container,
    .map-section-home .map-container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

