/* =========================================
   WHY RAW Pages Styles (Benefits + Science)
   ========================================= */

/* Shared */
.whyraw-container {
    padding-top: 0;
    min-height: 100vh;
    font-family: "Montserrat", var(--font-korean);
    background-color: white;
}

.whyraw-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 60px 20px;
}
.whyraw-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: white;
    line-height: 1.1;
}
.whyraw-hero p {
    font-size: 1rem;
    max-width: 800px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.whyraw-content {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.whyraw-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    color: #1a1a1a;
}
.whyraw-section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #c41230;
}

/* Benefits Page */
/* Benefits Page Hero */
.benefits-hero {
    min-height: 250px;
    background-color: #223327; /* Deep Brand Green */
    background-image: none;
    text-align: left;
    padding: 60px 0;
}
.benefits-hero .hero-content {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 35px;
    width: 100%;
}
.benefits-hero h1 {
    font-size: 2.4rem;
    line-height: 1.4;
    margin-bottom: 24px;
    max-width: 600px;
}
.benefits-hero p {
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 16px;
    opacity: 0.9;
}

/* Reap the Benefits Section */
.reap-benefits {
    background-color: white;
    padding: 80px 20px;
    text-align: center;
}
.reap-benefits h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #223327;
}
.reap-benefits .subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.5;
}
.benefits-icon-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.benefit-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
}
.benefit-icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
.benefit-icon-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}
.benefit-icon-item span {
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.3;
    color: #666;
    text-align: center;
}

/* 5 Reasons Section */
.whyraw-features {
    position: relative;
    padding: 120px 20px;
    background-color: #fdfaf5 !important;
    background-image: url('../images/why-raw/features-bg.jpg') !important;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    color: #223327;
    width: 100%;
}
.whyraw-features h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 80px;
}
.features-container-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
}
.features-list {
    max-width: 600px;
    list-style: none;
    padding: 0;
    margin-left: 5%;
    position: relative;
}
/* .features-list::before removed to use per-item line for better control */
.features-list li {
    margin-bottom: 40px;
    position: relative;
    padding-left: 45px;
}
.features-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 24px;
    height: 24px;
    background: #223327;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2; /* Increased z-index */
}
.features-list li:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 11px;
    top: 29px;
    bottom: -45px;
    width: 1px;
    background-color: white;
    opacity: 0.5;
    z-index: 1;
}
.features-list span {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #223327;
}
.features-list p {
    font-size: 1.0rem;
    line-height: 1.6;
    color: #666;
    font-weight: 500;
}
.features-footnote {
    margin-top: 20px;
    margin-left: 5%;
    font-size: 0.75rem;
    color: #666;
    font-style: italic;
}

/* Source Section */
.whyraw-source {
    display: flex;
    max-width: 1500px;
    margin: 0 auto !important;
    background-color: white;
}
.source-text {
    flex: 0.9;
    padding: 40px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f7f7f7;
}
.source-text h2 {
    font-size: 1.95rem;
    font-weight: 800;
    margin-bottom: 32px;
    color: #223327;
}
.source-text p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #666;
}
.source-image-container {
    flex: 1.1;
    position: relative;
    background: url('../images/why-raw/why-raw-ingredients.jpg') center/cover no-repeat;
    min-height: 460px;
}
.wr-ingredients-list {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    list-style: none;
    padding: 0;
    margin: 0;
}
.wr-ingredients-list li {
    font-size: 1.05rem;
    font-weight: 800;
    color: #223327;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    text-shadow: 0 1px 4px rgba(255,255,255,0.9); /* 이미지 위 가독성 */
}
.wr-ingredients-list li::before {
    content: '•';
    margin-right: 10px;
    font-size: 1.2rem;
    color: #4a7c59;
}
.benefits-container {
    background-color: #ffffff;
    color: #333;
}

/* HPP Section */
.whyraw-hpp {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}
.hpp-intro {
    max-width: 900px;
    margin: 0 auto 80px;
}
.hpp-intro h2 {
    font-size: 2.22rem;
    color: #223327;
    margin-bottom: 25px;
    font-weight: 800;
}
.hpp-highlight {
    font-size: 1.6rem;
    color: #223327;
    font-weight: 600;
    margin-bottom: 35px;
    line-height: 1.45;
}
.hpp-desc {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.8;
    max-width: 1000px;
    margin: 0 auto;
}
.hpp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.hpp-item {
    padding: 20px;
}
.hpp-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
}
.hpp-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.hpp-item h3 {
    font-size: 1.25rem;
    color: #223327;
    margin-bottom: 18px;
    font-weight: 800;
}
.hpp-item p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .hpp-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .hpp-highlight {
        font-size: 1.35rem;
    }
}

/* Science Section */
.whyraw-science {
    display: flex;
    max-width: 1500px;
    margin: 0 auto !important;
    background-color: white;
}
.science-image-side {
    flex: 1.1;
    display: block;
    background-image: url('../images/why-raw/scientific-advancement.jpg') !important;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    min-height: 460px;
}
.science-text-side {
    flex: 0.9;
    padding: 40px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f7f7f7;
}
.science-text-side h2 {
    font-size: 1.95rem;
    font-weight: 800;
    margin-bottom: 32px;
    color: #223327;
}
.science-text-side p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #666;
}
.btn-science-link {
    display: inline-block;
    padding: 12px 35px;
    background-color: #223327;
    color: white;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 1.0rem;
    border-radius: 30px;
    text-decoration: none;
    align-self: flex-start;
    margin-top: 20px;
    border: 2px solid #223327;
    transition: all 0.3s ease;
}
.btn-science-link:hover {
    background-color: #ffffff;
    color: #223327;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}
.benefit-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.benefit-card-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    color: #c41230;
}
.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}
.benefit-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

/* Science Page */
.science-hero {
    height: 50vh;
    background-color: #1a1a1a;
}
.science-container {
    background-color: #ffffff;
    color: #333;
}
.science-content {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 20px;
}
.science-item {
    display: flex;
    gap: 60px;
    margin-bottom: 120px;
    align-items: center;
}
.science-item:nth-child(even) {
    flex-direction: row-reverse;
}
.science-text {
    flex: 1;
}
.science-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #c41230;
}
.science-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}
.science-image-placeholder {
    flex: 1;
    height: 400px;
    background-color: #f0f0f0;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    color: #999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.science-stats {
    background-color: #f8f9fa;
    padding: 100px 20px;
    text-align: center;
}
.science-stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}
.science-stat-item h4 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #c41230;
    margin-bottom: 10px;
}
.science-stat-item p {
    font-size: 1.1rem;
    color: #666;
}

@media (max-width: 991px) {
    .whyraw-source {
        flex-direction: column;
        margin: 60px 20px;
    }
    .whyraw-science {
        flex-direction: column-reverse;
        margin: 60px 20px;
    }
    .source-text, .science-text-side {
        padding: 60px 20px;
    }
    .source-text h2, .science-text-side h2 {
        font-size: 1.8rem;
    }
    .source-image-container, .science-image-side {
        min-height: 400px;
    }
    /* 화면이 줄어들어도 글자는 이미지 위 오른쪽에 고정 유지 */
    .wr-ingredients-list {
        right: 40px;
    }
}

@media (max-width: 768px) {
    .whyraw-hero h1 { font-size: 2.5rem; }
    .whyraw-hero p { font-size: 1.1rem; }
    .benefits-hero {
        padding: 50px 20px;
        min-height: 200px;
    }
    .benefits-hero h1 {
        font-size: 1.8rem;
        max-width: 100%;
        margin-bottom: 20px;
    }
    .benefits-hero p {
        font-size: 0.85rem;
        max-width: 100%;
    }
    .benefits-icon-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 10px;
    }
    .benefit-icon-item span {
        font-size: 0.75rem;
    }
    .benefit-icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
    }
    .reap-benefits h2 { font-size: 1.6rem; }
    .whyraw-features { padding: 60px 20px; }
    .whyraw-features h2 { font-size: 1.6rem; margin-bottom: 40px; }
    .features-list { margin-left: 0; padding: 0 10px; }
    .features-list span { font-size: 0.95rem; }
    .features-list p { font-size: 0.85rem; }
    .features-footnote { margin-left: 0; padding: 0 10px; }
    .science-item, .science-item:nth-child(even) {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .benefits-icon-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Science of Raw Hero Banner */
.science-of-raw-hero {
    position: relative;
    width: 100%;
    height: 390px; /* Increased from 380px by ~0.5em */
    background-image: url('../images/why-raw/science-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-start; /* Move to top */
    overflow: hidden;
    padding-top: 40px; /* Space from header */
}

.science-of-raw-hero .hero-container {
    max-width: 1500px; /* Match header-container */
    margin: 0 auto;
    padding: 0 35px; /* Match header-container padding */
    width: 100%;
}

.science-of-raw-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #004144;
    line-height: 1.3;
    max-width: 600px;
    margin: 0;
    text-align: left;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Research Program Section */
.research-program {
    background-color: #ffffff;
    padding: 100px 20px;
    text-align: center;
}

.research-container {
    max-width: 1200px;
    margin: 0 auto;
}

.research-container h2 {
    font-size: 2.22rem;
    font-weight: 500;
    color: #223327;
    margin-bottom: 80px;
    line-height: 1.35;
}

.research-grid {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.research-item {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.research-item img {
    width: 70px;
    height: 70px;
    margin-bottom: 24px;
    object-fit: contain;
}

.research-item p {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
    color: #4c4c4c;
}

/* Research Detail Section */
.research-detail {
    display: flex;
    flex-wrap: nowrap;
    max-width: 1200px;
    margin: 80px auto;
    background-color: #cbc6a6; /* Exact color code provided by user */
    overflow: hidden;
    padding: 0 !important; /* Remove global section padding to allow image to fill */
}

.research-detail-image {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
}

.research-detail-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.research-detail-content {
    flex: 0 0 50%;
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.research-detail-content h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #223327; /* Dark Green */
    margin-bottom: 25px;
    line-height: 1.3;
}

.research-detail-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 20px;
}

.researcher-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
}

.researcher-info img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.researcher-info p {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333333;
    margin-bottom: 0;
    flex: 1;
}

@media (max-width: 1024px) {
    .research-detail-content {
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {
    .research-detail-image {
        min-width: 100%;
        height: 400px;
    }
    .research-detail-content {
        min-width: 100%;
        padding: 60px 20px;
    }
    .research-detail-content h2 {
        font-size: 2rem;
    }
    .researcher-info {
        flex-direction: column;
        text-align: center;
    }
}

/* Mobile responsive for banner */
@media (max-width: 991px) {
    .science-of-raw-hero {
        height: 330px; /* Increased from 320px by ~0.5em */
    }
    .science-of-raw-hero h1 {
        font-size: 2.2rem;
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .science-of-raw-hero {
        height: auto;
        min-height: 200px;
        background-image: url('../images/why-raw/science-hero-mobile.jpg');
        background-position: center;
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 0;
    }
    .science-of-raw-hero .hero-container {
        padding: 0 20px;
        text-align: center;
    }
    .science-of-raw-hero h1 {
        font-size: 1.8rem;
        max-width: 100%;
        color: white;
        text-align: center;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9), 
                     -1px -1px 15px rgba(0, 0, 0, 0.7);
    }
    
    .research-program {
        padding: 60px 20px;
    }
    .research-container h2 {
        font-size: 1.6rem;
    }
    .research-container p {
        font-size: 1.1rem;
    }
}
/* Research Visuals Section */
.research-visuals {
    background-color: #cbc6a6;
    padding: 100px 20px;
}

.visuals-container {
    max-width: 1200px;
    margin: 0 auto;
}

.visuals-main-title {
    text-align: center;
    font-size: 2.22rem;
    font-weight: 800;
    color: #223327; /* User requested Dark Green */
    margin-bottom: 60px;
}

.visual-card {
    background-color: #ffffff;
    padding: 70px;
    margin-bottom: 80px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.06);
    border-bottom: 2px solid #223327;
}

.card-header {
    margin-bottom: 60px;
}

.card-header h3 {
    font-size: 1.8rem;
    color: #223327;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 800;
}

.card-header p {
    font-size: 1rem;
    color: #444;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.7;
}

.card-body {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.card-text-side {
    flex: 1.2;
    display: flex;
    flex-direction: column;
}

.card-image-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.result-label, .impact-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #aaa;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.result-title {
    font-size: 1.75rem;
    color: #223327;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 5px;
}

.footnote {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 50px;
}

.impact-box {
    padding-top: 0;
    margin-top: 100px; /* Aligns with the second chart area */
}

.impact-box h5 {
    font-size: 1.5rem;
    color: #223327;
    font-weight: 800;
    margin-bottom: 20px;
}

.impact-box p {
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
}

.chart-item h6 {
    font-size: 1rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 20px;
}

.chart-item img {
    max-width: 65%;
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: 0;
    margin-right: auto;
}

.chart-caption {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    font-weight: 500;
}

.pie-charts img {
    max-width: 75%;
    display: block;
    margin-left: 0;
    margin-right: auto;
}

@media (max-width: 1024px) {
    .card-body {
        flex-direction: column;
        gap: 60px;
    }
    
    .visual-card {
        padding: 40px 30px;
    }
}

/* Continued Research Section */
.continued-research {
    padding: 60px 20px;
    background-color: #f2f2f2;
    text-align: center;
    margin-top: 80px; /* Separation gap with white background */
}

.continued-container {
    max-width: 1200px;
    margin: 0 auto;
}

.continued-research h2 {
    font-size: 2.22rem;
    font-weight: 800;
    color: #223327;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.continued-research p {
    font-size: 1.15rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.continued-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.continued-item {
    flex: 1;
    min-width: 200px;
    max-width: 240px;
}

.continued-item img {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.continued-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #223327;
    line-height: 1.4;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .continued-grid {
        gap: 40px;
    }
    
    .continued-research h2 {
        font-size: 1.75rem;
    }
}

/* Continued Research CTA Button */
.continued-cta {
    margin-top: 60px;
}

.more-research-btn {
    display: inline-block;
    background-color: #223327;
    color: #fff;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.more-research-btn:hover {
    background-color: #223327;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Team of Experts Section */
.experts-section {
    padding: 100px 20px;
    background-color: #ffffff;
    text-align: center;
}

.experts-container {
    max-width: 1200px;
    margin: 0 auto;
}

.experts-section h2 {
    font-size: 2.22rem;
    font-weight: 800;
    color: #223327;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.experts-section p {
    font-size: 1.1rem;
    color: #444;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

.experts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.expert-card {
    background: #f9f9f9;
    padding: 40px 20px;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.expert-image {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #eee;
}

.expert-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #223327;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.expert-qual {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.expert-title {
    font-size: 0.9rem !important;
    color: #666 !important;
    line-height: 1.4 !important;
    margin-bottom: 0 !important;
}

@media (max-width: 1024px) {
    .experts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .experts-grid {
        grid-template-columns: 1fr;
    }
    .experts-section h2 {
        font-size: 1.75rem;
    }
}
