/* Hero Section */
.abouts-hero-section {
    position: relative;
    width: 100%;
    height: 32rem;
    overflow: hidden;
    background-color: #1a1a1a;
}

.abouts-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.abouts-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.abouts-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.abouts-hero-container {
    position: relative;
    z-index: 3;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 3.75rem;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.abouts-hero-content {
    max-width: 56.25rem;
    margin-bottom: 3rem;
}

.abouts-hero-title {
    font-family: 'Roboto_Bold', sans-serif;
    font-size: 3.75rem;
    font-weight: 700;
    color: #F5F3EE;
    line-height: 1.1;
    margin: 0 0 1.5rem 0;
}

.abouts-hero-desc {
    font-family: 'Roboto_Regular', sans-serif;
    font-size: 1.75rem;
    color: #F5F3EE;
    line-height: 1.7;
    margin: 0;
}

.abouts-hero-stats {
    display: flex;
    gap: 3rem;
}

.abouts-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.abouts-stat-icon {
    width: 3.5rem;
    height: 3.5rem;
    flex-shrink: 0;
}

.abouts-stat-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.abouts-stat-value {
    font-family: 'Roboto_Bold', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #F5F3EE;
    line-height: 1.2;
}

.abouts-stat-label {
    font-family: 'Roboto_Regular', sans-serif;
    font-size: 1.13rem;
    color: #F5F3EE;
    line-height: 1.4;
}

/* Hero Responsive */

/* 1440px and below */
@media screen and (max-width: 1440px) {
    .abouts-hero-container {
        padding: 0 3rem;
    }
    
    .abouts-hero-title {
        font-size: 3.75rem;
    }
    
    .abouts-hero-stats {
        gap: 2.5rem;
    }
    
    .abouts-stat-value {
        font-size: 1.5rem;
    }
}

/* 1200px and below */
@media screen and (max-width: 1200px) {
    .abouts-hero-container {
        padding: 0 2.5rem;
    }
    
    .abouts-hero-title {
        font-size: 2.5rem;
    }
    
    .abouts-hero-desc {
        font-size: 1.125rem;
    }
    
    .abouts-hero-stats {
        gap: 2rem;
    }
    
    .abouts-stat-item {
        gap: 0.75rem;
    }
    
    .abouts-stat-icon {
        width: 3rem;
        height: 3rem;
    }
    
    .abouts-stat-value {
        font-size: 1.375rem;
    }
}

/* 992px and below */
@media screen and (max-width: 992px) {
    .abouts-hero-section {
        height: auto;
        min-height: 32rem;
    }
    
    .abouts-hero-container {
        padding: 0 2rem;
        height: auto;
        min-height: 32rem;
    }
    
    .abouts-hero-content {
        margin-bottom: 2.5rem;
    }
    
    .abouts-hero-title {
        font-size: 2.25rem;
    }
    
    .abouts-hero-desc {
        font-size: 1rem;
    }
    
    .abouts-hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .abouts-stat-item {
        flex: 1 1 calc(50% - 0.75rem);
        min-width: calc(50% - 0.75rem);
    }
    
    .abouts-stat-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .abouts-stat-value {
        font-size: 1.25rem;
    }
    
    .abouts-stat-label {
        font-size: 0.875rem;
    }
}

/* 768px and below */
@media screen and (max-width: 768px) {
    .abouts-hero-section {
        min-height: auto;
        padding: 4rem 0;
    }
    
    .abouts-hero-container {
        padding: 0 1.5rem;
        min-height: auto;
    }
    
    .abouts-hero-content {
        margin-bottom: 2rem;
    }
    
    .abouts-hero-title {
        font-size: 1.875rem;
        margin-bottom: 1rem;
    }
    
    .abouts-hero-desc {
        font-size: 0.9375rem;
        line-height: 1.5;
    }
    
    .abouts-hero-stats {
        gap: 1.25rem;
    }
    
    .abouts-stat-item {
        flex: 1 1 calc(50% - 0.625rem);
        min-width: calc(50% - 0.625rem);
    }
    
    .abouts-stat-icon {
        width: 2.25rem;
        height: 2.25rem;
    }
    
    .abouts-stat-value {
        font-size: 1.125rem;
    }
    
    .abouts-stat-label {
        font-size: 0.8125rem;
    }
}

/* 480px and below */
@media screen and (max-width: 480px) {
    .abouts-hero-container {
        padding: 0 1rem;
    }
    
    .abouts-hero-title {
        font-size: 1.5rem;
    }
    
    .abouts-hero-desc {
        font-size: 0.875rem;
    }
    
    .abouts-hero-stats {
        gap: 1rem;
    }
    
    .abouts-stat-item {
        flex: 1 1 100%;
        min-width: 100%;
    }
    
    .abouts-stat-icon {
        width: 2rem;
        height: 2rem;
    }
    
    .abouts-stat-value {
        font-size: 1rem;
    }
}

/* About Us Section */
.abouts-about-section {
    background-color: #F3F4F4;
    padding: 6rem 0;
}

.abouts-about-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 3.75rem;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.abouts-about-content {
    flex: 1;
}

.abouts-about-title {
    font-family: 'Roboto_Bold', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #0B0F0D;
    letter-spacing: 0.125rem;
    margin: 0 0 2rem 0;
}

.abouts-about-desc {
    font-family: 'Roboto_Regular', sans-serif;
    font-size: 1.5rem;
    color: #333333;
    line-height: 1.8;
    margin: 0 0 1.5rem 0;
}

.abouts-about-desc:last-child {
    margin-bottom: 0;
}

.abouts-about-image {
    flex: 1;
    overflow: hidden;
    border-radius: 0.5rem;
}

.abouts-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* About Us Responsive */

/* 1440px and below */
@media screen and (max-width: 1440px) {
    .abouts-about-section {
        padding: 5rem 0;
    }
    
    .abouts-about-container {
        padding: 0 3rem;
        gap: 4rem;
    }
    
    .abouts-about-title {
        font-size: 2rem;
    }
}

/* 1200px and below */
@media screen and (max-width: 1200px) {
    .abouts-about-section {
        padding: 4rem 0;
    }
    
    .abouts-about-container {
        padding: 0 2.5rem;
        gap: 3rem;
    }
    
    .abouts-about-title {
        font-size: 1.875rem;
        margin-bottom: 1.5rem;
    }
    
    .abouts-about-desc {
        font-size: 0.9375rem;
        line-height: 1.7;
    }
}

/* 992px and below */
@media screen and (max-width: 992px) {
    .abouts-about-section {
        padding: 3.5rem 0;
    }
    
    .abouts-about-container {
        padding: 0 2rem;
        flex-direction: column;
        gap: 3rem;
    }
    
    .abouts-about-content {
        order: 1;
    }
    
    .abouts-about-image {
        order: 2;
        width: 100%;
        max-width: 40rem;
    }
    
    .abouts-about-title {
        font-size: 1.75rem;
    }
}

/* 768px and below */
@media screen and (max-width: 768px) {
    .abouts-about-section {
        padding: 3rem 0;
    }
    
    .abouts-about-container {
        padding: 0 1.5rem;
        gap: 2.5rem;
    }
    
    .abouts-about-title {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
        letter-spacing: 0.0625rem;
    }
    
    .abouts-about-desc {
        font-size: 0.875rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }
}

/* 480px and below */
@media screen and (max-width: 480px) {
    .abouts-about-section {
        padding: 2.5rem 0;
    }
    
    .abouts-about-container {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .abouts-about-title {
        font-size: 1.375rem;
    }
    
    .abouts-about-desc {
        font-size: 0.8125rem;
    }
}

/* Our Business Section */
.abouts-business-section {
    background-color: #F3F4F4;
    padding: 6rem 0;
}

.abouts-business-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 3.75rem;
}

.abouts-business-title {
    font-family: 'Roboto_Bold', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #0B0F0D;
    letter-spacing: 0.125rem;
    margin: 0 0 1rem 0;
    text-align: left;
}

.abouts-business-subtitle {
    font-family: 'Roboto_Regular', sans-serif;
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    margin: 0 0 3rem 0;
    text-align: left;
}

.abouts-business-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.abouts-business-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.abouts-business-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 0.25rem;
}

.abouts-business-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.abouts-business-item:hover .abouts-business-image img {
    transform: scale(1.05);
}

.abouts-business-name {
    font-family: 'Roboto_Bold', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #0B0F0D;
    margin: 0;
    text-align: left;
}

/* Our Business Responsive */

/* 1440px and below */
@media screen and (max-width: 1440px) {
    .abouts-business-section {
        padding: 5rem 0;
    }
    
    .abouts-business-container {
        padding: 0 3rem;
    }
    
    .abouts-business-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

/* 1200px and below */
@media screen and (max-width: 1200px) {
    .abouts-business-section {
        padding: 4rem 0;
    }
    
    .abouts-business-container {
        padding: 0 2.5rem;
    }
    
    .abouts-business-title {
        font-size: 1.875rem;
    }
    
    .abouts-business-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

/* 992px and below */
@media screen and (max-width: 992px) {
    .abouts-business-section {
        padding: 3.5rem 0;
    }
    
    .abouts-business-container {
        padding: 0 2rem;
    }
    
    .abouts-business-title {
        font-size: 1.75rem;
    }
    
    .abouts-business-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 2.5rem;
    }
    
    .abouts-business-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .abouts-business-name {
        font-size: 1rem;
    }
}

/* 768px and below */
@media screen and (max-width: 768px) {
    .abouts-business-section {
        padding: 3rem 0;
    }
    
    .abouts-business-container {
        padding: 0 1.5rem;
    }
    
    .abouts-business-title {
        font-size: 1.5rem;
        letter-spacing: 0.0625rem;
    }
    
    .abouts-business-subtitle {
        font-size: 0.875rem;
        margin-bottom: 2rem;
    }
    
    .abouts-business-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .abouts-business-name {
        font-size: 0.9375rem;
    }
}

/* 480px and below */
@media screen and (max-width: 480px) {
    .abouts-business-section {
        padding: 2.5rem 0;
    }
    
    .abouts-business-container {
        padding: 0 1rem;
    }
    
    .abouts-business-title {
        font-size: 1.375rem;
    }
    
    .abouts-business-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .abouts-business-name {
        font-size: 1rem;
    }
}

/* Global Reach Section */
.abouts-global-section {
    background-color: #F3F4F4;
    padding: 6rem 0;
}

.abouts-global-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 3.75rem;
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.abouts-global-map {
    flex: 1;
    min-width: 0;
}

.abouts-global-map img {
    width: 100%;
    height: auto;
    display: block;
}

.abouts-global-content {
    flex: 1;
    min-width: 0;
}

.abouts-global-title {
    font-family: Arial, Arial;
    font-size: 2rem;
    font-weight: 400;
    color: #0B0F0D;
    line-height: 2.8125rem;
    margin: 0 0 2rem 0;
}

.abouts-global-desc {
    font-family: ArialMT, ArialMT;
    font-size: 1.5rem;
    font-weight: 400;
    color: #666666;
    line-height: 1.875rem;
    text-align: left;
    margin: 0 0 0.625rem 0;
}

.abouts-global-desc:last-child {
    margin-bottom: 0;
}

/* Global Reach Responsive */

/* 1440px and below */
@media screen and (max-width: 1440px) {
    .abouts-global-section {
        padding: 5rem 0;
    }
    
    .abouts-global-container {
        padding: 0 3rem;
        gap: 4rem;
    }
    
    .abouts-global-title {
        font-size: 1.75rem;
    }
    
    .abouts-global-desc {
        font-size: 1.25rem;
        line-height: 1.5625rem;
    }
}

/* 1200px and below */
@media screen and (max-width: 1200px) {
    .abouts-global-section {
        padding: 4rem 0;
    }
    
    .abouts-global-container {
        padding: 0 2.5rem;
        gap: 3rem;
    }
    
    .abouts-global-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .abouts-global-desc {
        font-size: 1.125rem;
        line-height: 1.5rem;
    }
}

/* 992px and below */
@media screen and (max-width: 992px) {
    .abouts-global-section {
        padding: 3.5rem 0;
    }
    
    .abouts-global-container {
        padding: 0 2rem;
        flex-direction: column;
        gap: 3rem;
    }
    
    .abouts-global-map {
        width: 100%;
        max-width: 40rem;
        margin: 0 auto;
    }
    
    .abouts-global-content {
        width: 100%;
    }
    
    .abouts-global-title {
        font-size: 1.375rem;
    }
    
    .abouts-global-desc {
        font-size: 1rem;
        line-height: 1.375rem;
    }
}

/* 768px and below */
@media screen and (max-width: 768px) {
    .abouts-global-section {
        padding: 3rem 0;
    }
    
    .abouts-global-container {
        padding: 0 1.5rem;
        gap: 2.5rem;
    }
    
    .abouts-global-title {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .abouts-global-desc {
        font-size: 0.9375rem;
        line-height: 1.3125rem;
        margin-bottom: 0.625rem;
    }
}

/* 480px and below */
@media screen and (max-width: 480px) {
    .abouts-global-section {
        padding: 2.5rem 0;
    }
    
    .abouts-global-container {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .abouts-global-title {
        font-size: 1.125rem;
    }
    
    .abouts-global-desc {
        font-size: 0.875rem;
    }
}

/* Commitment Section */
.abouts-commitment-section {
    background-color: #F3F4F4;
    padding: 6rem 0;
}

.abouts-commitment-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 3.75rem;
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.abouts-commitment-left {
    flex: 1;
    min-width: 0;
}

.abouts-commitment-title {
    font-family: ArialMT, ArialMT;
    font-size: 1.5rem;
    font-weight: 400;
    color: #0B0F0D;
    line-height: 2.8125rem;
    margin: 0 0 1.25rem 0;
}

.abouts-commitment-desc {
    font-family: ArialMT, ArialMT;
    font-size: 1.5rem;
    font-weight: 400;
    color: #666666;
    line-height: 2rem;
    margin: 0 0 1.25rem 0;
}

.abouts-commitment-right {
    flex: 1;
    min-width: 0;
}

.abouts-commitment-subtitle {
    font-family: Arial, Arial;
    font-size: 1.5rem;
    font-weight: 400;
    color: #0B0F0D;
    line-height: 2rem;
    margin: 0 0 1.5rem 0;
}

.abouts-commitment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.abouts-commitment-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.abouts-commitment-item-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 0.25rem;
    background-color: #F3F4F4;
}

.abouts-commitment-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.abouts-commitment-item:hover .abouts-commitment-item-image img {
    transform: scale(1.05);
}

.abouts-commitment-item-label {
    font-family: ArialMT, ArialMT;
    font-size: 1.125rem;
    font-weight: 400;
    color: #0B0F0D;
    line-height: 1.5625rem;
    text-align: center;
}

/* Commitment Responsive */

/* 1440px and below */
@media screen and (max-width: 1440px) {
    .abouts-commitment-section {
        padding: 5rem 0;
    }
    
    .abouts-commitment-container {
        padding: 0 3rem;
        gap: 4rem;
    }
    
    .abouts-commitment-title {
        font-size: 1.75rem;
    }
    
    .abouts-commitment-desc {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
    
    .abouts-commitment-subtitle {
        font-size: 1.25rem;
    }
    
    .abouts-commitment-item-label {
        font-size: 1rem;
    }
}

/* 1200px and below */
@media screen and (max-width: 1200px) {
    .abouts-commitment-section {
        padding: 4rem 0;
    }
    
    .abouts-commitment-container {
        padding: 0 2.5rem;
        gap: 3rem;
    }
    
    .abouts-commitment-title {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .abouts-commitment-desc {
        font-size: 1.125rem;
        line-height: 1.5rem;
    }
    
    .abouts-commitment-subtitle {
        font-size: 1.125rem;
        margin-bottom: 1.25rem;
    }
    
    .abouts-commitment-item-label {
        font-size: 0.9375rem;
    }
}

/* 992px and below */
@media screen and (max-width: 992px) {
    .abouts-commitment-section {
        padding: 3.5rem 0;
    }
    
    .abouts-commitment-container {
        padding: 0 2rem;
        flex-direction: column;
        gap: 3rem;
    }
    
    .abouts-commitment-left,
    .abouts-commitment-right {
        width: 100%;
    }
    
    .abouts-commitment-title {
        font-size: 1.375rem;
    }
    
    .abouts-commitment-desc {
        font-size: 1rem;
        line-height: 1.375rem;
    }
    
    .abouts-commitment-subtitle {
        font-size: 1rem;
    }
    
    .abouts-commitment-item-label {
        font-size: 0.875rem;
    }
}

/* 768px and below */
@media screen and (max-width: 768px) {
    .abouts-commitment-section {
        padding: 3rem 0;
    }
    
    .abouts-commitment-container {
        padding: 0 1.5rem;
        gap: 2.5rem;
    }
    
    .abouts-commitment-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .abouts-commitment-desc {
        font-size: 0.9375rem;
        line-height: 1.3125rem;
    }
    
    .abouts-commitment-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 1rem;
    }
    
    .abouts-commitment-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.625rem;
    }
    
    .abouts-commitment-item-label {
        font-size: 0.75rem;
    }
}

/* 480px and below */
@media screen and (max-width: 480px) {
    .abouts-commitment-section {
        padding: 2.5rem 0;
    }
    
    .abouts-commitment-container {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .abouts-commitment-title {
        font-size: 1.125rem;
    }
    
    .abouts-commitment-desc {
        font-size: 0.875rem;
    }
    
    .abouts-commitment-subtitle {
        font-size: 0.875rem;
    }
    
    .abouts-commitment-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .abouts-commitment-item-label {
        font-size: 0.8125rem;
    }
}

/* Corporate Culture Section */
.abouts-culture-section {
    background-color: #F3F4F4;
    padding: 6rem 0;
}

.abouts-culture-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 3.75rem;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.abouts-culture-left {
    flex: 1;
    min-width: 0;
}

.abouts-culture-title {
    font-family: Arial, Arial;
    font-size: 2rem;
    font-weight: 400;
    color: #0B0F0D;
    line-height: 2.8125rem;
    margin: 0 0 1rem 0;
}

.abouts-culture-subtitle {
    font-family: Arial, Arial;
    font-size: 2rem;
    font-weight: 400;
    color: #0B0F0D;
    line-height: 2.8125rem;
    margin: 0 0 1rem 0;
}

.abouts-culture-desc {
    font-family: ArialMT, ArialMT;
    font-size: 1.5rem;
    font-weight: 400;
    color: #666666;
    line-height: 2rem;
    margin: 0 0 1.25rem 0;
}

.abouts-culture-text {
    font-family: ArialMT, ArialMT;
    font-size: 1.5rem;
    font-weight: 400;
    color: #666666;
    line-height: 2rem;
    margin: 0;
}

.abouts-culture-right {
    flex: 1.2;
    min-width: 0;
}

.abouts-culture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.abouts-culture-item {
    position: relative;
    display: flex;
    flex-direction: column;
}

.abouts-culture-item img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
    border-radius: 0.25rem;
    transition: transform 0.3s ease;
}

.abouts-culture-item:hover img {
    transform: scale(1.05);
}

.abouts-culture-label {
    position: absolute;
    bottom: 1.5rem;
    left: 0;
    right: 0;
    text-align: center;
    font-family: ArialMT, ArialMT;
    font-size: 1.75rem;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 2.4375rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Corporate Culture Responsive */

/* 1440px and below */
@media screen and (max-width: 1440px) {
    .abouts-culture-section {
        padding: 5rem 0;
    }
    
    .abouts-culture-container {
        padding: 0 3rem;
        gap: 4rem;
    }
    
    .abouts-culture-title {
        font-size: 1.75rem;
    }
    
    .abouts-culture-subtitle {
        font-size: 1.75rem;
    }
    
    .abouts-culture-desc {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
    
    .abouts-culture-label {
        font-size: 1.5rem;
    }
}

/* 1200px and below */
@media screen and (max-width: 1200px) {
    .abouts-culture-section {
        padding: 4rem 0;
    }
    
    .abouts-culture-container {
        padding: 0 2.5rem;
        gap: 3rem;
    }
    
    .abouts-culture-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .abouts-culture-subtitle {
        font-size: 1.5rem;
    }
    
    .abouts-culture-desc {
        font-size: 1.125rem;
        line-height: 1.5rem;
    }
    
    .abouts-culture-label {
        font-size: 1.25rem;
    }
}

/* 992px and below */
@media screen and (max-width: 992px) {
    .abouts-culture-section {
        padding: 3.5rem 0;
    }
    
    .abouts-culture-container {
        padding: 0 2rem;
        flex-direction: column;
        gap: 3rem;
    }
    
    .abouts-culture-left,
    .abouts-culture-right {
        width: 100%;
    }
    
    .abouts-culture-title {
        font-size: 1.375rem;
    }
    
    .abouts-culture-subtitle {
        font-size: 1.375rem;
    }
    
    .abouts-culture-desc {
        font-size: 1rem;
        line-height: 1.375rem;
    }
    
    .abouts-culture-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
    
    .abouts-culture-label {
        font-size: 1.125rem;
        bottom: 1rem;
    }
}

/* 768px and below */
@media screen and (max-width: 768px) {
    .abouts-culture-section {
        padding: 3rem 0;
    }
    
    .abouts-culture-container {
        padding: 0 1.5rem;
        gap: 2.5rem;
    }
    
    .abouts-culture-title {
        font-size: 1.25rem;
        margin-bottom: 0.625rem;
    }
    
    .abouts-culture-subtitle {
        font-size: 1.25rem;
    }
    
    .abouts-culture-desc {
        font-size: 0.9375rem;
        line-height: 1.3125rem;
    }
    
    .abouts-culture-label {
        font-size: 0.875rem;
        bottom: 0.75rem;
    }
}

/* 480px and below */
@media screen and (max-width: 480px) {
    .abouts-culture-section {
        padding: 2.5rem 0;
    }
    
    .abouts-culture-container {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .abouts-culture-title {
        font-size: 1.125rem;
    }
    
    .abouts-culture-subtitle {
        font-size: 1.125rem;
    }
    
    .abouts-culture-desc {
        font-size: 0.875rem;
    }
    
    .abouts-culture-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .abouts-culture-label {
        font-size: 0.75rem;
    }
}

/* Certificate Section */
.abouts-certificate-section {
    background-color: #F3F4F4;
    padding: 6rem 0;
}

.abouts-certificate-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 3.75rem;
}

.abouts-certificate-title {
    font-family: 'Roboto_Bold', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #0B0F0D;
    letter-spacing: 0.125rem;
    margin: 0 0 0.5rem 0;
    text-align: left;
}

.abouts-certificate-subtitle {
    font-family: 'Roboto_Regular', sans-serif;
    font-size: 1rem;
    color: #666666;
    letter-spacing: 0.125rem;
    margin: 0 0 3rem 0;
    text-align: left;
}

.abouts-certificate-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.abouts-certificate-item {
    display: flex;
    flex-direction: column;
}

.abouts-certificate-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 0.25rem;
    background-color: #F3F4F4;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.abouts-certificate-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.abouts-certificate-item:hover .abouts-certificate-image img {
    transform: scale(1.05);
}

/* Certificate Responsive */

/* 1440px and below */
@media screen and (max-width: 1440px) {
    .abouts-certificate-section {
        padding: 5rem 0;
    }
    
    .abouts-certificate-container {
        padding: 0 3rem;
    }
    
    .abouts-certificate-title {
        font-size: 2rem;
    }
    
    .abouts-certificate-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

/* 1200px and below */
@media screen and (max-width: 1200px) {
    .abouts-certificate-section {
        padding: 4rem 0;
    }
    
    .abouts-certificate-container {
        padding: 0 2.5rem;
    }
    
    .abouts-certificate-title {
        font-size: 1.875rem;
    }
    
    .abouts-certificate-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 2.5rem;
    }
}

/* 992px and below */
@media screen and (max-width: 992px) {
    .abouts-certificate-section {
        padding: 3.5rem 0;
    }
    
    .abouts-certificate-container {
        padding: 0 2rem;
    }
    
    .abouts-certificate-title {
        font-size: 1.75rem;
    }
    
    .abouts-certificate-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

/* 768px and below */
@media screen and (max-width: 768px) {
    .abouts-certificate-section {
        padding: 3rem 0;
    }
    
    .abouts-certificate-container {
        padding: 0 1.5rem;
    }
    
    .abouts-certificate-title {
        font-size: 1.5rem;
        letter-spacing: 0.0625rem;
    }
    
    .abouts-certificate-subtitle {
        font-size: 0.875rem;
        margin-bottom: 2rem;
    }
    
    .abouts-certificate-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* 480px and below */
@media screen and (max-width: 480px) {
    .abouts-certificate-section {
        padding: 2.5rem 0;
    }
    
    .abouts-certificate-container {
        padding: 0 1rem;
    }
    
    .abouts-certificate-title {
        font-size: 1.375rem;
    }
    
    .abouts-certificate-subtitle {
        font-size: 0.8125rem;
    }
    
    .abouts-certificate-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}
