* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
    background-color: #ffffff;
    color: black;
    line-height: 1.6;
}

.container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 40px;
}

/* About Hero Section - Semicircle Red Background Design */
.about-hero-section {
    background: #fff !important;
    padding: 80px 0 !important;
    margin: 0;
    border: none !important;
    overflow: visible;
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about-hero-container {
    display: flex;
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    min-height: 750px;
    background: #fff;
}

.about-hero-logo-side {
    position: relative;
    width: 55%;
    background: linear-gradient(135deg, #8C2131 0%, #6b1825 100%);
    border-radius: 0 100% 100% 0 / 0 50% 50% 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    z-index: 1;
}
.about-page-title{
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: #1a1a1a;
    margin: 0 0 30px 0;
    line-height: 1.2;
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
}

.about-hero-text {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 60px 40px 80px;
    gap: 24px;
}

.logo-circle {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.08) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border: 3px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.logo-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.logo-circle img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.about-tagline {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #333333;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.divider-line {
    width: 80px;
    height: 3px;
    background: #8C2131;
    margin: 20px 0;
}

/* Navigation */
.nav-container {
    background-color: #8C2131;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-links {
    display: flex;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;
}

.nav-links li {
    margin: 0 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s;
    padding: 5px 0;
    position: relative;
}

.nav-links a:hover {
    color: #f0f0f0;
    opacity: 0.8;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: white;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Content Sections */
section {
    padding: 80px 0;
    border-bottom: 1px solid #e8e8e8;
}

.section-title {
    font-size: 2.5rem;
    color: #8C2131;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background-color: #8C2131;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Story Section */
.story-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.story-text {
    flex: 1;
    min-width: 300px;
    margin-left: 20px;
}

.story-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
 
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Asian Hockey Scene Section */
.scene-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.scene-item {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.scene-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.scene-title {
    font-size: 1.4rem;
    color: #8C2131;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.scene-icon {
    background-color: #8C2131;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Services Section */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.service-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(140, 33, 49, 0.15);
}

.service-icon {
    background: linear-gradient(135deg, #8C2131 0%, #6b1825 100%);
    color: white;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.service-content {
    padding: 25px;
}

.service-title {
    font-size: 1.3rem;
    color: #8C2131;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Partners Section */
.partners-section{
    background:#fff;
    padding:80px 0!important;
    border:none!important;
}
.partners-container{
    max-width:1400px;
    margin:0 auto;
    padding:0 40px;
}
.partners-main-title{
    text-align:center;
    font-size:3rem;
    color:#8C2131;
    font-weight:700;
    margin:0 0 60px;
    text-transform:uppercase;
    letter-spacing:2px;
    position:relative;
    padding-bottom:20px;
}
.partners-main-title::after{
    content:'';
    position:absolute;
    bottom:0;
    left:50%;
    transform:translateX(-50%);
    width:150px;
    height:4px;
    background:#8C2131;
}
.partners-layout{
    display:grid;
    grid-template-columns:55% 45%;
    gap:40px;
}
.partner-group{
    margin-bottom:40px;
}
.partner-group:last-child{
    margin-bottom:0;
}
.partner-category-title{
    font-size:1.15rem;
    color:#8C2131;
    font-weight:700;
    margin:0 0 20px;
    text-align:left;
}
.partner-logos-row{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    justify-content:flex-start;
    align-items:stretch;
}
.partner-logos-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
    align-items:stretch;
}
.partner-logo-box{
    background:#fff;
    border:2px solid #e0e0e0;
    border-radius:8px;
    padding:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:120px;
    height:100%;
    transition:all 0.3s ease;
    box-shadow:0 2px 8px rgba(0,0,0,0.05);
}
.partner-logo-box:hover{
    border-color:#8C2131;
    box-shadow:0 4px 15px rgba(140,33,49,0.2);
    transform:translateY(-3px);
}
.partner-logo-box img{
    max-width:100%;
    max-height:80px;
    object-fit:contain;
}
.rink-partners{
    gap:15px;
}
.partner-logo-box.rink-logo{
    flex-direction:column;
    padding:10px;
}
.rink-text{
    text-align:center;
}
.rink-icon{
    font-size:2rem;
    margin-bottom:5px;
}
.rink-text p{
    font-size:0.85rem;
    color:#333;
    margin:0;
    line-height:1.3;
}

@media (max-width:1200px){
    .partners-layout{
        grid-template-columns:1fr;
    }
    .partner-logos-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media (max-width:768px){
    .partners-main-title{
        font-size:2.2rem;
    }
    .partner-logos-row{
        justify-content:center;
    }
    .partner-logos-grid{
        grid-template-columns:repeat(2,1fr);
    }
    .partner-category-title{
        text-align:center;
    }
}

@media (max-width:640px){
    .partners-section{
        padding:50px 0!important;
    }
    .partners-container{
        padding:0 20px;
    }
    .partners-main-title{
        font-size:1.8rem;
        margin-bottom:40px;
    }
    .partner-logos-row{
        flex-direction:column;
        align-items:center;
        width:100%;
    }
    .partner-logo-box{
        width:100%;
        max-width:280px;
        margin:0 auto;
    }
    .partner-logos-grid{
        grid-template-columns:1fr;
        justify-items:center;
    }
    .partner-logos-grid .partner-logo-box{
        width:100%;
        max-width:280px;
    }
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.partner-category {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.partner-title {
    font-size: 1.3rem;
    color: #8C2131;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 3px solid #8C2131;
    padding-bottom: 10px;
    font-weight: 600;
}

.partner-list {
    list-style: none;
}

.partner-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: #555;
}

.partner-list li:last-child {
    border-bottom: none;
}


/* Footer */
footer {
    background-color: #8C2131;
    color: white;
    padding: 50px 0 30px;
    text-align: center;
}

.footer-logo {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 3px;
}

.copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Achievers Section */
.achievers {
    background-color: #f0f7ff;
}

.achievers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.achiever {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    padding: 20px;
}

.achiever-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    border: 5px solid #f0f7ff;
}

/* Highlight Box */
.highlight {
    background: linear-gradient(135deg, #8C2131 0%, #6b1825 100%);
    color: white;
    padding: 40px;
    border-radius: 10px;
    margin: 40px 0;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.8;
    box-shadow: 0 10px 30px rgba(140, 33, 49, 0.2);
}

.highlight strong {
    color: #ffffff;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-hero-section::before {
        width: 60%;
    }

    .about-hero-content {
        gap: 50px;
    }

    .logo-circle {
        width: 320px;
        height: 320px;
    }

    .about-page-title {
        font-size: 56px;
        letter-spacing: 8px;
    }

    .about-tagline {
        font-size: 18px;
    }
}

@media (max-width: 980px) {
    .scene-container { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .about-hero-section {
        min-height: auto;
        padding: 80px 0 60px;
    }

    .about-hero-section::before {
        width: 100%;
        height: 50%;
        border-radius: 0 0 50% 50% / 0 0 100px 100px;
        top: 0;
        transform: none;
    }

    .about-hero-container {
        padding: 0 20px;
    }

    .about-hero-content {
        flex-direction: column;
        gap: 40px;
        padding: 40px 20px;
    }

    .about-hero-logo {
        margin-left: 0;
        display: flex;
        justify-content: center;
    }

    .about-hero-text {
        margin-right: 0;
        padding-left: 0;
        text-align: center;
    }

    .logo-circle {
        width: 280px;
        height: 280px;
    }

    .about-page-title {
        font-size: 48px;
        letter-spacing: 6px;
        text-align: center;
        color: #1a1a1a;
    }

    .about-tagline {
        font-size: 16px;
        text-align: center;
        color: #333333;
    }

    .divider-line {
        margin-left: auto;
        margin-right: auto;
    }
    
    .nav-links li {
        margin: 0 10px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .about-hero-section {
        padding: 80px 0 40px;
    }

    .about-hero-container {
        padding: 0 15px;
    }

    .about-hero-content {
        padding: 30px 10px;
        gap: 30px;
    }

    .logo-circle {
        width: 200px;
        height: 200px;
    }

    .about-page-title {
        font-size: 32px;
        letter-spacing: 3px;
    }

    .about-tagline {
        font-size: 14px;
        line-height: 1.5;
    }

    .about-hero-container, .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 10px 0;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    
    .nav-links li {
        margin: 4px;
    }

    .nav-links li a {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
}

/* Page 4 specific styles */
.page-4-section{background:#ffffff;padding:64px 0;border-top:1px solid #eef2f7}
.page4-inner{display:flex;gap:40px;align-items:flex-start}
.page4-left{flex:1;min-width:300px;padding-right:20px}
.page4-left .lead{font-size:1.05rem;color:#334155;margin-bottom:18px}
.program-list{display:flex;flex-direction:column;gap:16px}
.program-item h3{margin:0 0 6px;color:#8C2131}
.program-item p{margin:0;color:#475569}
.timeline{display:flex;gap:14px;margin-top:20px}
.timeline-step{background:#f1f5f9;padding:12px 14px;border-radius:8px;min-width:170px}
.timeline-step strong{display:block;color:#6b1825}
.timeline-step span{color:#475569;font-size:0.95rem}

.page4-right{width:420px;display:flex;flex-direction:column;gap:18px}
.program-hero{height:300px;border-radius:12px;overflow:hidden;background:#e6eef9;display:flex;align-items:center;justify-content:center}
.program-hero img{width:100%;height:100%;object-fit:cover;display:block}
.quick-facts{display:flex;flex-direction:column;gap:10px}
.fact{display:flex;align-items:center;gap:12px;background:#fff;padding:12px;border-radius:10px;box-shadow:0 6px 18px rgba(2,6,23,.04)}
.fnum{font-size:22px;font-weight:800;color:#6b1825}
.ftxt{color:#475569}

@media (max-width:980px){
    .page4-inner{flex-direction:column}
    .page4-right{width:100%}
}

/* Scene note (separate callout for important observations) */
.scene-note{
    background:#fff7f6;
    border-left:4px solid #8C2131;
    padding:12px 16px;
    margin-top:12px;
    color:#6b1825;
    border-radius:6px;
    line-height:1.6;
}

/* What We Do Section Redesign */
.what-we-do-banner{
    display:flex;
    align-items:center;
    gap:20px;
    background:linear-gradient(135deg,#8C2131 0%,#6b1825 100%);
    color:#fff;
    padding:40px;
    border-radius:8px;
    margin:30px 0;
    flex-wrap:wrap;
}
.banner-left{
    font-size:18px;
    font-weight:600;
    color:rgba(255,255,255,0.8);
}
.banner-main{
    flex:1;
    min-width:300px;
    font-size:24px;
    font-weight:700;
    line-height:1.4;
    color:#fff;
}
.banner-right{
    font-size:18px;
    font-weight:600;
    color:rgba(255,255,255,0.8);
}

.what-we-do-container{
    margin-top:40px;
    display: flex;
    flex-direction: column;
    gap: 120px;

}
.what-we-do-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,auto));
    justify-content:center;
    align-items:center;
    text-align: center ;
    gap:24px;
    font-size: 28px;
    font-family: inherit;
}
.what-we-do-list{
    list-style:none;
    padding:0;
}
.what-we-do-list li{
    margin-bottom:18px;
    color:#333;
    font-size:1.05rem;
    line-height:1.7;
}
.what-we-do-list li strong{
    color:#8C2131;
    font-weight:600;
}

.what-we-do-logos{
    margin-top:30px;
    padding-top:30px;
    border-top:1px solid #e0e0e0;
}
.logo-group{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:16px;
}
.logo-group img{
    height:60px;
    object-fit:contain;
}

/* What We Do Section */
.what-we-do-section{
    background:#fff;
    padding:80px 0!important;
    border:none!important;
    position:relative;
    width:100%;
    z-index:1;
}
.what-we-do-wrapper{
    max-width:1200px;
    margin:0 auto;
    padding:0 40px;
    position:relative;
    background:#fff;
}
.what-section-title{
    text-align:center;
    font-size:2.8rem;
    color:#1a1a1a;
    font-weight:700;
    margin:0 auto 50px;
    text-transform:uppercase;
    letter-spacing:3px;
    padding:15px 30px;
    border:3px solid #1a1a1a;
    display:block;
    width:fit-content;
}
.what-main-statement{
    display:grid;
    grid-template-columns:200px 1fr;
    gap:30px;
    align-items:start;
    margin-bottom:40px;
}
.statement-label{
    font-size:1.8rem;
    color:#8C2131;
    font-weight:700;
    text-align:center;
    padding:15px 20px;
    border:3px solid #8C2131;
    display:flex;
    align-items:center;
    justify-content:center;
    height:fit-content;
}
.statement-text{
    font-size:1.8rem;
    font-weight:700;
    color:#1a1a1a;
    margin:0;
    line-height:1.4;
    padding-top:10px;
}
.divider-full{
    width:100%;
    height:2px;
    background:#ddd;
    margin:40px 0;
}
.what-details{
    display:grid;
    grid-template-columns:200px 1fr;
    gap:30px;
    margin-bottom:50px;
    align-items:start;
}
.details-label{
    font-size:1.8rem;
    color:#8C2131;
    font-weight:700;
    text-align:center;
    padding:15px 20px;
    border:3px solid #8C2131;
    display:flex;
    align-items:center;
    justify-content:center;
    height:fit-content;
}
.details-list{
    display:flex;
    flex-direction:column;
    gap:20px;
}
.detail-item{
    display:flex;
    gap:15px;
    align-items:start;
    font-size:1.05rem;
    line-height:1.6;
    color:#333;
}
.detail-item .bullet{
    color:#8C2131;
    font-size:0.8rem;
    flex-shrink:0;
    margin-top:4px;
}
.detail-item strong{
    color:#8C2131;
    font-weight:700;
}
.league-logos-grid{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
    margin-top:40px;
}
.league-logo{
    background:#fff;
    border:2px solid #e0e0e0;
    border-radius:8px;
    padding:15px 20px;
    display:flex;
    align-items:center;
    justify-content:center;
    min-width:130px;
    height:80px;
    transition:all 0.3s ease;
    box-shadow:0 2px 8px rgba(0,0,0,0.05);
}
.league-logo:hover{
    border-color:#8C2131;
    box-shadow:0 4px 15px rgba(140,33,49,0.2);
    transform:translateY(-3px);
}
.league-logo img{
    max-width:100%;
    max-height:60px;
    object-fit:contain;
}

@media (max-width:980px){
    .what-main-statement{
        grid-template-columns:1fr;
        gap:20px;
    }
    .statement-label{
        text-align:center;
        margin:0 auto;
    }
    .statement-text{
        text-align:center;
        font-size:1.5rem;
    }
    .what-details{
        grid-template-columns:1fr;
        gap:20px;
    }
    .details-label{
        text-align:center;
        margin:0 auto;
    }
}

@media (max-width:640px){
    .what-we-do-section{
        padding:50px 0!important;
    }
    .what-we-do-wrapper{
        padding:0 20px;
    }
    .what-section-title{
        font-size:2rem;
        padding:12px 20px;
    }
    .statement-label,
    .details-label{
        font-size:1.4rem;
        padding:12px 20px;
    }
    .statement-text{
        font-size:1.3rem;
    }
    .detail-item{
        font-size:0.95rem;
    }
    .league-logos-grid{
        gap:15px;
    }
    .league-logo{
        min-width:110px;
        height:70px;
    }
}

/* Business Overview Section */
.business-overview-section{
    background:#fff!important;
    padding:80px 0!important;
    margin:0;
    border:none!important;
    overflow:visible;
    position:relative;
    width:100%;
}
.business-overview-container{
    display:flex;
    position:relative;
    width:100%;
    max-width:1600px;
    margin:0 auto;
    min-height:550px;
    background:#fff;
}
.business-curve{
    position:relative;
    width:55%;
    background:linear-gradient(135deg,#8C2131 0%,#6b1825 100%);
    border-radius:0 100% 100% 0 / 0 50% 50% 0;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:60px;
    z-index:1;
}
.business-title{
    font-size:3.5rem;
    color:#fff;
    font-weight:900;
    letter-spacing:3px;
    text-transform:uppercase;
    line-height:1.2;
    font-family:'Bebas Neue',sans-serif;
}
.business-services{
    width:45%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:40px 60px 40px 80px;
    gap:24px;
}
.service-item{
    display:flex;
    align-items:center;
    gap:20px;
    transition:transform 0.3s ease;
}
.service-item:hover{
    transform:translateX(8px);
}
.service-badge{
    width:50px;
    height:50px;
    background:#8C2131;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.5rem;
    font-weight:700;
    flex-shrink:0;
    box-shadow:0 4px 12px rgba(140,33,49,0.3);
}
.service-info h3{
    margin:0 0 4px;
    color:#1a1a1a;
    font-size:1.15rem;
    font-weight:700;
}
.service-info p{
    margin:0;
    color:#555;
    font-size:0.95rem;
    line-height:1.4;
}

@media (max-width:980px){
    .business-overview-container{
        flex-direction:column;
    }
    .business-curve{
        width:100%;
        border-radius:0 0 50% 50% / 0 0 80px 80px;
        min-height:200px;
    }
    .business-services{
        width:100%;
        padding:40px;
    }
    .business-title{
        font-size:2.5rem;
    }
}

/* Youth Hockey Camps Detail Section */
.camps-detail-section{
    background:#fff;
    padding:80px 0!important;
    border:none!important;
}
.camps-detail-container{
    max-width:1200px;
    margin:0 auto;
    padding:0 40px;
}
.camps-badge-wrapper{
    display:flex;
    align-items:center;
    gap:24px;
    margin-bottom:40px;
}
.camps-badge{
    width:70px;
    height:70px;
    background:#8C2131;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:2rem;
    font-weight:700;
    flex-shrink:0;
    box-shadow:0 6px 20px rgba(140,33,49,0.4);
}
.camps-main-title{
    font-size:2.5rem;
    color:#1a1a1a;
    font-weight:700;
    margin:0;
}
.camps-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:start;
}
.camps-text{
    padding-right:20px;
}
.camps-heading{
    font-size:2rem;
    color:#1a1a1a;
    font-weight:700;
    margin:0 0 20px;
}
.camps-intro{
    font-size:1.05rem;
    line-height:1.8;
    color:#333;
    margin-bottom:20px;
}
.camps-intro strong{
    color:#8C2131;
}
.camps-description{
    font-size:1.05rem;
    line-height:1.8;
    color:#333;
}
.camps-image{
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 40px rgba(0,0,0,0.15);
}
.camps-image img{
    width:100%;
    height:auto;
    display:block;
    object-fit:cover;
}

@media (max-width:980px){
    .camps-content{
        grid-template-columns:1fr;
        gap:30px;
    }
    .camps-main-title{
        font-size:2rem;
    }
    .camps-heading{
        font-size:1.6rem;
    }
}

/* High Caliber Hockey Tournaments Section */
.tournaments-section{
    background:#fff;
    padding:80px 0!important;
    border:none!important;
}
.tournaments-container{
    max-width:1200px;
    margin:0 auto;
    padding:0 40px;
    text-align:center;
}
.tournaments-header{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:24px;
    margin-bottom:30px;
}
.tournaments-badge{
    width:70px;
    height:70px;
    background:#8C2131;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:2rem;
    font-weight:700;
    flex-shrink:0;
    box-shadow:0 6px 20px rgba(140,33,49,0.4);
}
.tournaments-main-title{
    font-size:2.5rem;
    color:#1a1a1a;
    font-weight:700;
    margin:0;
}
.tournaments-subtitle{
    font-size:1.15rem;
    line-height:1.7;
    color:#333;
    margin:0 auto 50px;
    max-width:800px;
}
.tournaments-list-heading{
    font-size:2rem;
    color:#8C2131;
    font-weight:700;
    letter-spacing:2px;
    margin:0 0 40px;
    text-transform:uppercase;
    position:relative;
    padding-bottom:15px;
}
.tournaments-list-heading::after{
    content:'';
    position:absolute;
    bottom:0;
    left:50%;
    transform:translateX(-50%);
    width:100px;
    height:3px;
    background:#8C2131;
}
.tournaments-logos{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:30px;
    margin-top:40px;
}
.tournament-logo{
    width:150px;
    height:150px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    border-radius:12px;
    box-shadow:0 4px 15px rgba(0,0,0,0.1);
    padding:20px;
    transition:transform 0.3s ease,box-shadow 0.3s ease;
}
.tournament-logo:hover{
    transform:translateY(-8px);
    box-shadow:0 8px 25px rgba(140,33,49,0.2);
}
.tournament-logo img{
    max-width:100%;
    max-height:100%;
    object-fit:contain;
}

@media (max-width:980px){
    .tournaments-header{
        flex-direction:column;
        gap:16px;
    }
    .tournaments-main-title{
        font-size:2rem;
        text-align:center;
    }
    .tournaments-list-heading{
        font-size:1.6rem;
    }
    .tournament-logo{
        width:120px;
        height:120px;
    }
}

/* Canadian Ice Hockey Academy Tours Section */
.academy-tours-section{
    background:#fff;
    padding:80px 0!important;
    border:none!important;
}
.academy-tours-container{
    max-width:1400px;
    margin:0 auto;
    padding:0 40px;
}
.academy-tours-header{
    display:flex;
    align-items:center;
    gap:24px;
    margin-bottom:40px;
}
.academy-badge{
    width:70px;
    height:70px;
    background:#8C2131;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:2rem;
    font-weight:700;
    flex-shrink:0;
    box-shadow:0 6px 20px rgba(140,33,49,0.4);
}
.academy-main-title{
    font-size:2.5rem;
    color:#1a1a1a;
    font-weight:700;
    margin:0;
}
.academy-content-wrapper{
    display:grid;
    grid-template-columns:1fr 2fr;
    gap:40px;
    align-items:start;
}
.academy-description{
    padding:20px 0;
}
.academy-description p{
    font-size:1.05rem;
    line-height:1.8;
    color:#333;
    margin:0;
}
.academy-photos-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
    grid-auto-rows:200px;
}
.academy-photo{
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
    transition:transform 0.3s ease,box-shadow 0.3s ease;
}
.academy-photo:hover{
    transform:scale(1.03);
    box-shadow:0 6px 20px rgba(140,33,49,0.2);
}
.academy-photo.large{
    grid-column:span 2;
}
.academy-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

@media (max-width:980px){
    .academy-content-wrapper{
        grid-template-columns:1fr;
        gap:30px;
    }
    .academy-photos-grid{
        grid-template-columns:repeat(2,1fr);
        grid-auto-rows:150px;
    }
    .academy-photo.large{
        grid-column:span 1;
    }
    .academy-main-title{
        font-size:2rem;
    }
}

@media (max-width:640px){
    .academy-photos-grid{
        grid-template-columns:1fr;
    }
}

/* Canadian Women's Hockey Program Section */
.womens-hockey-section{
    background:#fff;
    padding:80px 0!important;
    border:none!important;
}
.womens-hockey-container{
    max-width:1400px;
    margin:0 auto;
    padding:0 40px;
}
.womens-header{
    display:flex;
    align-items:center;
    gap:24px;
    margin-bottom:50px;
}
.womens-badge{
    width:70px;
    height:70px;
    background:#8C2131;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:2rem;
    font-weight:700;
    flex-shrink:0;
    box-shadow:0 6px 20px rgba(140,33,49,0.4);
}
.womens-title{
    font-size:2.5rem;
    color:#1a1a1a;
    font-weight:700;
    margin:0;
}
.womens-content{
    display:grid;
    grid-template-columns:350px 1fr;
    gap:40px;
    position:relative;
}
.womens-content::before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    bottom:0;
    width:4px;
    background:#8C2131;
}
.womens-left{
    padding-left:30px;
}
.coach-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 6px 20px rgba(0,0,0,0.1);
}
.coach-photo{
    width:100%;
    height:350px;
    overflow:hidden;
    background:#f5f5f5;
}
.coach-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.coach-info{
    padding:20px;
    text-align:center;
    background:#fff;
}
.coach-info h3{
    font-size:1.3rem;
    color:#1a1a1a;
    font-weight:700;
    margin:0 0 8px;
}
.coach-info p{
    font-size:0.95rem;
    color:#555;
    line-height:1.6;
    margin:0;
}
.womens-gallery{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
    grid-auto-rows:280px;
}
.gallery-photo{
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 4px 15px rgba(0,0,0,0.1);
    border:4px solid #8C2131;
    transition:transform 0.3s ease,box-shadow 0.3s ease;
}
.gallery-photo:hover{
    transform:scale(1.02);
    box-shadow:0 8px 25px rgba(140,33,49,0.3);
}
.gallery-photo.large{
    grid-column:span 2;
    grid-row:span 1;
}
.gallery-photo.tall{
    grid-row:span 2;
}
.gallery-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

@media (max-width:980px){
    .womens-content{
        grid-template-columns:1fr;
        gap:30px;
    }
    .womens-content::before{
        display:none;
    }
    .womens-left{
        padding-left:0;
    }
    .coach-card{
        max-width:400px;
        margin:0 auto;
    }
    .womens-gallery{
        grid-template-columns:1fr;
        grid-auto-rows:250px;
    }
    .gallery-photo.large{
        grid-column:span 1;
    }
    .gallery-photo.tall{
        grid-row:span 1;
    }
    .womens-title{
        font-size:2rem;
    }
}

/* International Programs Section */
.international-programs-section{
    background:#fff;
    padding:80px 0!important;
    border:none!important;
}
.international-container{
    max-width:1400px;
    margin:0 auto;
    padding:0 40px;
}
.international-title{
    text-align:center;
    font-size:3rem;
    color:#1a1a1a;
    font-weight:700;
    margin:0 0 60px;
}
.international-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    align-items:start;
}
.country-block{
    text-align:center;
}
.flag-banner{
    width:100%;
    height:120px;
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 4px 15px rgba(0,0,0,0.1);
    margin-bottom:20px;
}
.flag-banner svg{
    width:100%;
    height:100%;
}
.country-map{
    background:#f5f5f5;
    border-radius:12px;
    padding:20px;
    box-shadow:0 4px 15px rgba(0,0,0,0.1);
}
.country-map svg{
    width:100%;
    height:auto;
}
.country-map.large{
    padding:30px;
}
.invitation-letter{
    background:#fff;
    border:3px solid #8C2131;
    border-radius:12px;
    padding:25px;
    box-shadow:0 6px 20px rgba(0,0,0,0.15);
}
.letter-header{
    text-align:center;
    border-bottom:2px solid #8C2131;
    padding-bottom:15px;
    margin-bottom:20px;
}
.letter-logo{
    font-size:2.5rem;
    margin-bottom:10px;
}
.letter-header h3{
    font-size:1.3rem;
    color:#8C2131;
    margin:0 0 5px;
    font-weight:700;
}
.letter-subtitle{
    font-size:0.9rem;
    color:#555;
    margin:0;
}
.letter-body{
    font-size:0.85rem;
    line-height:1.6;
    color:#333;
}
.letter-body p{
    margin:0 0 12px;
}
.letter-highlights{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
    margin:15px 0;
}
.highlight-item{
    background:#f9f9f9;
    padding:8px;
    border-radius:6px;
    font-size:0.8rem;
    color:#8C2131;
    font-weight:600;
}
.letter-details{
    background:#f9f9f9;
    padding:15px;
    border-radius:8px;
    margin:15px 0;
}
.letter-details ul{
    margin:8px 0 0;
    padding-left:20px;
}
.letter-details li{
    font-size:0.8rem;
    margin-bottom:5px;
}
.letter-footer{
    margin-top:15px;
    padding-top:15px;
    border-top:1px solid #ddd;
    font-size:0.85rem;
}
.camp-poster{
    background:linear-gradient(135deg,#8C2131 0%,#6b1825 100%);
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(140,33,49,0.4);
}
.poster-content{
    padding:20px;
    color:#fff;
}
.poster-header{
    margin-bottom:15px;
}
.sweden-flag svg{
    width:100%;
    height:60px;
    border-radius:6px;
}
.poster-title{
    text-align:center;
    margin-bottom:20px;
}
.poster-title h3{
    font-size:2rem;
    margin:0 0 5px;
    color:#FECC00;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
}
.poster-title h4{
    font-size:1.1rem;
    margin:0;
    color:#fff;
    font-weight:600;
}
.poster-info{
    text-align:center;
}
.camp-logo-circle{
    width:100px;
    height:100px;
    background:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 15px;
    box-shadow:0 4px 15px rgba(0,0,0,0.3);
}
.logo-text{
    font-size:1.5rem;
    font-weight:700;
    color:#8C2131;
}
.camp-details{
    margin-top:15px;
}
.camp-date{
    font-size:1.2rem;
    font-weight:700;
    margin:0 0 8px;
    color:#FECC00;
}
.camp-location{
    font-size:0.95rem;
    margin:0 0 8px;
}
.camp-desc{
    font-size:0.85rem;
    opacity:0.9;
    margin:0;
}

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

@media (max-width:768px){
    .international-grid{
        grid-template-columns:1fr;
    }
    .international-title{
        font-size:2rem;
    }
    .international-programs-section{
        padding:50px 0!important;
    }
}

/* Student Athlete Post Graduate Program Section */
.postgrad-section{
    background:#f9f9f9;
    padding:80px 0!important;
    border:none!important;
}
.postgrad-container{
    max-width:1400px;
    margin:0 auto;
    padding:0 40px;
}
.postgrad-header{
    display:flex;
    align-items:center;
    gap:24px;
    margin-bottom:50px;
}
.postgrad-badge{
    width:70px;
    height:70px;
    background:#8C2131;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:2rem;
    font-weight:700;
    flex-shrink:0;
    box-shadow:0 6px 20px rgba(140,33,49,0.4);
}
.postgrad-title{
    font-size:2.5rem;
    color:#1a1a1a;
    font-weight:700;
    margin:0;
}
.postgrad-photos{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-bottom:60px;
}
.postgrad-photo{
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 6px 20px rgba(0,0,0,0.15);
    border:4px solid #8C2131;
    transition:transform 0.3s ease,box-shadow 0.3s ease;
    background:#fff;
    height:300px;
}
.postgrad-photo:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 30px rgba(140,33,49,0.4);
}
.postgrad-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.program-timeline{
    background:#fff;
    border-radius:16px;
    padding:40px;
    box-shadow:0 8px 25px rgba(0,0,0,0.1);
}
.timeline-path{
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:40px;
    position:relative;
}
.timeline-point{
    display:flex;
    flex-direction:column;
    align-items:center;
    position:relative;
    z-index:2;
}
.point-marker{
    width:20px;
    height:20px;
    background:#333;
    border-radius:50%;
    border:3px solid #fff;
    box-shadow:0 2px 8px rgba(0,0,0,0.2);
}
.point-label{
    margin-top:12px;
    padding:8px 16px;
    border-radius:20px;
    font-size:0.9rem;
    font-weight:700;
    text-align:center;
    line-height:1.3;
}
.point-label.asia,
.point-label.canada{
    background:#000;
    color:#fff;
}
.point-label.summer{
    background:#f5f5f5;
    color:#333;
    font-size:0.85rem;
}
.point-date{
    margin-top:8px;
    font-size:0.9rem;
    color:#666;
    font-weight:600;
}
.timeline-line{
    flex:1;
    height:3px;
    background:#ddd;
    position:relative;
    margin:0 -10px;
}
.program-tracks{
    display:flex;
    flex-direction:column;
    gap:20px;
}
.track-row{
    display:grid;
    grid-template-columns:120px 1fr;
    gap:20px;
    align-items:center;
}
.track-label{
    font-size:1.1rem;
    font-weight:700;
    color:#333;
    text-align:right;
}
.track-phases{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}
.phase{
    padding:15px 20px;
    border-radius:30px;
    text-align:center;
    font-weight:600;
    font-size:0.95rem;
    box-shadow:0 3px 10px rgba(0,0,0,0.1);
}
.phase.semester1,
.phase.semester2{
    background:#8C2131;
    color:#fff;
}
.phase.asian-hockey{
    background:#6CB4E8;
    color:#fff;
}
.phase.north-american-hockey{
    background:#003366;
    color:#fff;
}

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

@media (max-width:980px){
    .postgrad-header{
        flex-direction:column;
        text-align:center;
        align-items:center;
    }
    .postgrad-title{
        font-size:2rem;
    }
    .track-row{
        grid-template-columns:1fr;
        gap:10px;
    }
    .track-label{
        text-align:center;
    }
}

@media (max-width:640px){
    .postgrad-section{
        padding:50px 0!important;
    }
    .postgrad-container{
        padding:0 20px;
    }
    .postgrad-photos{
        grid-template-columns:1fr;
    }
    .postgrad-photo{
        height:250px;
    }
    .postgrad-title{
        font-size:1.6rem;
    }
    .timeline-path{
        flex-direction:column;
        gap:20px;
    }
    .timeline-line{
        width:3px;
        height:40px;
        margin:0;
    }
    .track-phases{
        grid-template-columns:1fr;
    }
    .phase{
        font-size:0.85rem;
        padding:12px 16px;
    }
}

/* Hockey Coach Internship & Outsourcing Section */
.coach-internship-section{
    background:#fff;
    padding:80px 0!important;
    border:none!important;
}
.coach-internship-container{
    max-width:1400px;
    margin:0 auto;
    padding:0 40px;
}
.coach-header{
    display:flex;
    align-items:center;
    gap:24px;
    margin-bottom:30px;
}
.coach-badge{
    width:70px;
    height:70px;
    background:#8C2131;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:2rem;
    font-weight:700;
    flex-shrink:0;
    box-shadow:0 6px 20px rgba(140,33,49,0.4);
}
.coach-title{
    font-size:2.5rem;
    color:#1a1a1a;
    font-weight:700;
    margin:0;
}
.coach-tagline{
    text-align:center;
    margin-bottom:40px;
}
.coach-tagline p{
    font-size:1.3rem;
    line-height:1.8;
    color:#333;
    margin:0;
}
.tagline-highlight{
    color:#8C2131;
    font-weight:700;
}
.coach-content{
    display:grid;
    grid-template-columns:45% 55%;
    gap:40px;
    align-items:start;
}
.coach-info{
    display:flex;
    flex-direction:column;
    gap:25px;
}
.info-item{
    display:flex;
    gap:15px;
    align-items:start;
}
.bullet-dot{
    width:12px;
    height:12px;
    background:#8C2131;
    border-radius:50%;
    flex-shrink:0;
    margin-top:6px;
}
.info-item p{
    font-size:1.05rem;
    line-height:1.7;
    color:#333;
    margin:0;
}
.text-highlight{
    color:#8C2131;
    font-weight:700;
}
.coach-photos{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    grid-auto-rows:250px;
}
.coach-photo{
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 6px 20px rgba(0,0,0,0.15);
    border:4px solid #8C2131;
    transition:transform 0.3s ease,box-shadow 0.3s ease;
    background:#fff;
}
.coach-photo:hover{
    transform:scale(1.03);
    box-shadow:0 10px 30px rgba(140,33,49,0.4);
}
.coach-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.coach-photo.large-photo{
    grid-column:span 2;
}
.coach-photo.tall-photo{
    grid-row:span 2;
}

@media (max-width:1200px){
    .coach-content{
        grid-template-columns:1fr;
    }
    .coach-photos{
        grid-auto-rows:280px;
    }
}

@media (max-width:980px){
    .coach-header{
        flex-direction:column;
        text-align:center;
        align-items:center;
    }
    .coach-title{
        font-size:2rem;
    }
    .coach-tagline p{
        font-size:1.1rem;
    }
}

@media (max-width:640px){
    .coach-internship-section{
        padding:50px 0!important;
    }
    .coach-internship-container{
        padding:0 20px;
    }
    .coach-title{
        font-size:1.6rem;
    }
    .coach-tagline p{
        font-size:0.95rem;
        line-height:1.6;
    }
    .info-item p{
        font-size:0.95rem;
    }
    .coach-photos{
        grid-template-columns:1fr;
        grid-auto-rows:250px;
    }
    .coach-photo.large-photo{
        grid-column:span 1;
    }
    .coach-photo.tall-photo{
        grid-row:span 1;
    }
}

/* Canada Teams Gallery Section */
.canada-teams-section{
    background:#f9f9f9;
    padding:80px 0!important;
    border:none!important;
}
.canada-teams-container{
    max-width:1400px;
    margin:0 auto;
    padding:0 40px;
}
.canada-teams-title{
    text-align:center;
    font-size:3rem;
    color:#1a1a1a;
    font-weight:700;
    margin:0 0 60px;
}
.canada-gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    grid-template-rows:repeat(3,280px);
    gap:20px;
    position:relative;
}
.team-photo{
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 6px 20px rgba(0,0,0,0.15);
    border:5px solid #8C2131;
    transition:transform 0.3s ease,box-shadow 0.3s ease;
    background:#fff;
}
.team-photo:hover{
    transform:scale(1.03);
    box-shadow:0 10px 30px rgba(140,33,49,0.4);
    z-index:10;
}
.team-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.team-photo.top-left{
    grid-column:1;
    grid-row:1;
}
.team-photo.top-right{
    grid-column:3;
    grid-row:1;
}
.team-photo.middle-left{
    grid-column:1;
    grid-row:2;
}
.team-photo.middle-right{
    grid-column:3;
    grid-row:2;
}
.team-photo.bottom-left{
    grid-column:1;
    grid-row:3;
}
.team-photo.bottom-right{
    grid-column:3;
    grid-row:3;
}
.canada-map-center{
    grid-column:2;
    grid-row:1 / 4;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px;
}
.map-placeholder{
    width:100%;
    max-width:300px;
    background:linear-gradient(135deg,#8C2131 0%,#6b1825 100%);
    border-radius:20px;
    padding:40px 30px;
    box-shadow:0 10px 40px rgba(140,33,49,0.3);
    text-align:center;
}
.map-placeholder svg{
    width:100%;
    height:auto;
    margin-bottom:20px;
    filter:drop-shadow(0 4px 10px rgba(0,0,0,0.2));
}
.map-label{
    color:#fff;
    font-size:1.8rem;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
}

@media (max-width:1200px){
    .canada-gallery-grid{
        grid-template-rows:repeat(3,240px);
    }
}

@media (max-width:980px){
    .canada-gallery-grid{
        grid-template-columns:1fr;
        grid-template-rows:auto;
        gap:20px;
    }
    .team-photo{
        grid-column:1!important;
        grid-row:auto!important;
        height:300px;
    }
    .canada-map-center{
        grid-column:1!important;
        grid-row:auto!important;
        order:-1;
        padding:20px;
        height:auto;
    }
    .map-placeholder{
        max-width:400px;
        margin:0 auto;
    }
    .canada-teams-title{
        font-size:2.2rem;
    }
}

@media (max-width:640px){
    .canada-teams-section{
        padding:50px 0!important;
    }
    .canada-teams-container{
        padding:0 20px;
    }
    .team-photo{
        height:250px;
    }
    .canada-teams-title{
        font-size:1.8rem;
        margin-bottom:40px;
    }
    .map-label{
        font-size:1.4rem;
    }
}

/* Our Achievers New Design */
.achievers-new{
    background:#fff;
    padding:80px 0!important;
    border:none!important;
}
.achievers-new-container{
    max-width:1400px;
    margin:0 auto;
    padding:0 40px;
}
.achievers-header{
    text-align:center;
    margin-bottom:50px;
}
.achievers-title{
    font-size:3rem;
    color:#8C2131;
    font-weight:700;
    margin:0 0 10px;
}
.achievers-subtitle{
    font-size:1.15rem;
    color:#333;
    font-weight:500;
    margin:0;
}
.achievers-cards-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
    grid-auto-flow:dense;
}
.achievers-card{
    background:linear-gradient(135deg,#8C2131 0%,#6b1825 100%);
    border-radius:20px;
    padding:30px 25px;
    box-shadow:0 6px 20px rgba(140,33,49,0.3);
    transition:transform 0.3s ease,box-shadow 0.3s ease;
}
.achievers-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 30px rgba(140,33,49,0.4);
}
.achievers-card.large{
    grid-column:span 2;
}
.achievers-card.small{
    min-height:auto;
}
.achievers-card.thailand-extra{
    background:linear-gradient(135deg,#A13347 0%,#7d2133 100%);
}
.card-region{
    background:#fff;
    color:#8C2131;
    font-size:1rem;
    font-weight:700;
    text-align:center;
    padding:8px 16px;
    border-radius:25px;
    margin:0 0 20px;
    display:inline-block;
    width:100%;
    letter-spacing:1px;
}
.card-list{
    list-style:none;
    padding:0;
    margin:0;
    color:#fff;
}
.card-list.two-columns{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:0 20px;
}
.card-list li{
    padding:6px 0;
    font-size:0.95rem;
    line-height:1.6;
    position:relative;
    padding-left:20px;
}
.card-list li::before{
    content:'•';
    position:absolute;
    left:0;
    color:#fff;
    font-size:1.2rem;
}

@media (max-width:980px){
    .achievers-cards-grid{
        grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    }
    .achievers-card.large{
        grid-column:span 1;
    }
    .achievers-title{
        font-size:2.5rem;
    }
}

@media (max-width:640px){
    .achievers-cards-grid{
        grid-template-columns:1fr;
    }
    .card-list.two-columns{
        grid-template-columns:1fr;
    }
}

/* Hero Section Mobile Responsiveness */
@media (max-width:980px){
    .about-hero-container{
        flex-direction:column;
    }
    .about-hero-logo-side{
        width:100%;
        border-radius:0 0 50% 50% / 0 0 80px 80px;
        min-height:300px;
        padding:40px;
    }
    .about-hero-text{
        width:100%;
        padding:40px;
    }
    .about-page-title{
        font-size:2.5rem;
    }
    .about-tagline{
        font-size:1.3rem;
    }
    .logo-circle{
        width:250px;
        height:250px;
    }
}

@media (max-width:640px){
    .about .about-hero-section{

    }
    .about-hero-logo-side{
        min-height:250px;
        padding:30px;
    }
    .about-page-title{
        font-size:2.8rem;
        margin-bottom: 0px;
    
    }
    .about-tagline{
        font-size:1.1rem;
    }
    .logo-circle{
        width:200px;
        height:200px;
    }
}
