/* Kids Factory Football Academy Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ocean-blue: #003566;
    --sky-mist: #e6eaf0;
    --deep-navy: #002346;
    --grass-green: #22c55e;
    --grass-light: #dcfce7;
    --sunset-orange: #f97316;
    --sunset-pale: #fed7aa;
    --victory-gold: #eab308;
    --gold-shimmer: #fef3c7;
    --field-gray: #64748b;
    --mist-gray: #f1f5f9;
    --champion-red: #dc2626;
    --energy-purple: #7c3aed;
}

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.7;
    color: var(--deep-navy);
    overflow-x: hidden;
}

.championzone {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(127deg, var(--sky-mist) 0%, #ffffff 45%, var(--sky-mist) 100%);
    display: flex;
    align-items: center;
    padding: 0 23px;
}

.fieldcontainer {
    max-width: 1340px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 3;
}

.stadiumheader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 29px 0 67px 0;
}

.teamlogo {
    display: flex;
    align-items: center;
    gap: 19px;
}

.logoemblem {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(0, 53, 102, 0.15);
}

.academytitle {
    font-family: 'Georgia', serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--ocean-blue);
    letter-spacing: -0.02em;
}

.pitchnavigation {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-radius: 47px;
    padding: 8px 13px;
    box-shadow: 0 6px 32px rgba(0, 53, 102, 0.11);
}

.navlineup {
    display: flex;
    list-style: none;
    gap: 7px;
}

.navplayer {
    padding: 13px 27px;
    text-decoration: none;
    color: var(--deep-navy);
    border-radius: 34px;
    transition: all 0.31s cubic-bezier(0.23, 1, 0.32, 1);
    font-weight: 600;
    position: relative;
}

.navplayeractive,
.navplayer:hover {
    background: var(--ocean-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 11px 28px rgba(0, 53, 102, 0.24);
}

.heropitch {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 73px;
    align-items: center;
    margin-top: 41px;
}

.goalcontent {
    padding: 0 17px;
}

.championshipheading {
    font-family: 'Georgia', serif;
    font-size: 3.4rem;
    line-height: 1.18;
    color: var(--ocean-blue);
    margin-bottom: 29px;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.matchdescription {
    font-size: 1.23rem;
    line-height: 1.68;
    color: var(--field-gray);
    margin-bottom: 43px;
    font-weight: 400;
}

.traininghighlights {
    margin-bottom: 47px;
}

.skillpoint {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-bottom: 21px;
    padding: 19px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 13px;
    box-shadow: 0 4px 18px rgba(0, 53, 102, 0.07);
    transition: transform 0.28s ease;
}

.skillpoint:hover {
    transform: translateX(9px);
    box-shadow: 0 7px 25px rgba(0, 53, 102, 0.13);
}

.pointmarker {
    font-size: 1.8rem;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grass-light);
    border-radius: 50%;
    flex-shrink: 0;
}

.pointdetail {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--deep-navy);
}

.actionbuttons {
    display: flex;
    gap: 19px;
    flex-wrap: wrap;
}

.primarykick {
    background: linear-gradient(134deg, var(--grass-green) 0%, #16a34a 100%);
    color: white;
    padding: 17px 41px;
    border: none;
    border-radius: 11px;
    font-size: 1.07rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.33s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.28);
    position: relative;
    overflow: hidden;
}

.primarykick:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(34, 197, 94, 0.4);
}

.primarykick:active {
    transform: translateY(-1px) scale(0.98);
}

.secondarypass {
    background: transparent;
    color: var(--ocean-blue);
    padding: 17px 39px;
    border: 2px solid var(--ocean-blue);
    border-radius: 11px;
    font-size: 1.07rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.29s ease;
}

.secondarypass:hover {
    background: var(--ocean-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 53, 102, 0.19);
}

.goalkeepervisual {
    position: relative;
    display: flex;
    justify-content: center;
}

.footballscene {
    position: relative;
    width: 100%;
    max-width: 487px;
}

.mainactionshot {
    width: 100%;
    height: auto;
    border-radius: 23px;
    box-shadow: 0 19px 64px rgba(0, 53, 102, 0.22);
    transition: transform 0.35s ease;
}

.mainactionshot:hover {
    transform: scale(1.03) rotate(1deg);
}

.floatingstats {
    position: absolute;
    top: -21px;
    right: -31px;
    display: flex;
    flex-direction: column;
    gap: 23px;
}

.statcard {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 23px 29px;
    border-radius: 17px;
    text-align: center;
    box-shadow: 0 11px 34px rgba(0, 53, 102, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.7);
    transition: all 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.statcard:hover {
    transform: translateY(-7px) rotate(-2deg);
    box-shadow: 0 18px 48px rgba(0, 53, 102, 0.25);
}


.statnumber {
    display: block;
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--ocean-blue);
    line-height: 1;
    margin-bottom: 8px;
    font-family: 'Georgia', serif;
}

.statlabel {
    font-size: 0.94rem;
    color: var(--field-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tacticaloverlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(34, 197, 94, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 53, 102, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Media Queries */
@media (max-width: 890px) {
    .heropitch {
        grid-template-columns: 1fr;
        gap: 53px;
        text-align: center;
    }
    
    .goalkeepervisual {
        order: -1;
    }
    
    .floatingstats {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 31px;
    }
    
    .championshipheading {
        font-size: 2.7rem;
    }
}

@media (max-width: 640px) {
    .stadiumheader {
        flex-direction: column;
        gap: 23px;
        padding-bottom: 43px;
    }
    
    .navlineup {
        flex-direction: column;
        gap: 5px;
        width: 100%;
    }
    
    .pitchnavigation {
        width: 100%;
        max-width: 320px;
    }
    
    .championzone {
        padding: 0 17px;
    }
    
    .championshipheading {
        font-size: 2.1rem;
        line-height: 1.25;
    }
    
    .actionbuttons {
        flex-direction: column;
        align-items: center;
    }
    
    .primarykick,
    .secondarypass {
        width: 100%;
        max-width: 280px;
    }
    
    .floatingstats {
        flex-direction: column;
        align-items: center;
    }
}




















/* Coaches Section Styles */

.coachingstaff {
    padding: 89px 23px;
    background: linear-gradient(142deg, #ffffff 0%, var(--sky-mist) 100%);
    position: relative;
}

.sectionheader {
    text-align: center;
    margin-bottom: 71px;
}

.sectiontitle {
    font-family: 'Georgia', serif;
    font-size: 2.8rem;
    color: var(--ocean-blue);
    margin-bottom: 19px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.sectionsubtitle {
    font-size: 1.17rem;
    color: var(--field-gray);
    font-weight: 500;
    max-width: 540px;
    margin: 0 auto;
}

.coachlineup {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 37px;
    max-width: 1240px;
    margin: 0 auto;
}

.coachcard {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(14px);
    border-radius: 19px;
    padding: 31px;
    box-shadow: 0 13px 42px rgba(0, 53, 102, 0.12);
    transition: all 0.37s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.coachcard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--grass-green) 0%, var(--victory-gold) 50%, var(--ocean-blue) 100%);
}

.coachcard:hover {
    transform: translateY(-11px) rotate(1deg);
    box-shadow: 0 23px 67px rgba(0, 53, 102, 0.18);
}

.coachphoto {
    position: relative;
    margin-bottom: 27px;
    display: flex;
    justify-content: center;
}

.coachimage {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--sky-mist);
    box-shadow: 0 11px 31px rgba(0, 53, 102, 0.15);
    transition: transform 0.33s ease;
}

.coachcard:hover .coachimage {
    transform: scale(1.08);
}

.experiencebadge {
    position: absolute;
    bottom: 8px;
    right: 23px;
    background: var(--grass-green);
    color: white;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(34, 197, 94, 0.25);
}

.yearcount {
    font-size: 1.1rem;
    line-height: 1;
}

.yearlabel {
    font-size: 0.7rem;
    opacity: 0.9;
}

.coachprofile {
    text-align: center;
}

.coachname {
    font-family: 'Georgia', serif;
    font-size: 1.6rem;
    color: var(--ocean-blue);
    margin-bottom: 8px;
    font-weight: 700;
}

.coachtitle {
    color: var(--grass-green);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 19px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.coachcredentials {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    justify-content: center;
    margin-bottom: 23px;
}

.credential {
    background: var(--sky-mist);
    color: var(--deep-navy);
    padding: 7px 15px;
    border-radius: 17px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(0, 53, 102, 0.1);
}

.coachapproach {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--field-gray);
    font-weight: 400;
    text-align: left;
    padding: 17px;
    background: rgba(0, 53, 102, 0.03);
    border-radius: 13px;
    border: 1px solid rgba(0, 53, 102, 0.08);
}

/* Media Queries */
@media (max-width: 890px) {
    .coachingstaff {
        padding: 67px 17px;
    }
    
    .sectiontitle {
        font-size: 2.3rem;
    }
    
    .coachlineup {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 29px;
    }
    
    .coachcard {
        padding: 23px;
    }
}

@media (max-width: 640px) {
    .sectiontitle {
        font-size: 1.9rem;
    }
    
    .sectionsubtitle {
        font-size: 1.05rem;
    }
    
    .coachlineup {
        grid-template-columns: 1fr;
        gap: 23px;
    }
    
    .coachimage {
        width: 120px;
        height: 120px;
    }
    
    .experiencebadge {
        width: 45px;
        height: 45px;
        bottom: 5px;
        right: 15px;
    }
    
    .yearcount {
        font-size: 1rem;
    }
    
    .yearlabel {
        font-size: 0.65rem;
    }
}











/* Age Groups Section Styles */

.traininggroups {
    padding: 97px 23px;
    background: var(--sky-mist);
    position: relative;
}

.traininggroups::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(34, 197, 94, 0.04) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(0, 53, 102, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.agegrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 33px;
    margin-bottom: 73px;
}

.agecard {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-radius: 21px;
    padding: 39px 29px;
    box-shadow: 0 17px 54px rgba(0, 53, 102, 0.11);
    transition: all 0.41s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.agecard::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.agecard:hover {
    transform: translateY(-13px) scale(1.02);
    box-shadow: 0 29px 78px rgba(0, 53, 102, 0.16);
}

.agecard:hover::after {
    opacity: 1;
}

.agecardtoddler::after {
    background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
}

.agecardkids::after {
    background: linear-gradient(90deg, #3b82f6 0%, #1d4ed8 100%);
}

.agecardyouth::after {
    background: linear-gradient(90deg, #eab308 0%, #ca8a04 100%);
}

.agecardteen::after {
    background: linear-gradient(90deg, #8b5cf6 0%, #7c3aed 100%);
}

.ageiconbox {
    display: flex;
    align-items: center;
    gap: 19px;
    margin-bottom: 27px;
}

.ageicon {
    font-size: 2.8rem;
    width: 73px;
    height: 73px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 24px rgba(0, 53, 102, 0.12);
}

.agerange {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--ocean-blue);
    font-family: 'Georgia', serif;
}

.ageheader {
    margin-bottom: 31px;
    text-align: center;
}

.agegroupname {
    font-family: 'Georgia', serif;
    font-size: 1.7rem;
    color: var(--ocean-blue);
    margin-bottom: 11px;
    font-weight: 700;
}

.agetagline {
    color: var(--field-gray);
    font-size: 1.05rem;
    font-weight: 500;
    font-style: italic;
}

.programdetails {
    text-align: left;
}

.programtitle {
    font-size: 1.15rem;
    color: var(--deep-navy);
    margin-bottom: 17px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.programlist {
    list-style: none;
    padding: 0;
    margin-bottom: 29px;
}

.programitem {
    padding: 11px 0;
    font-size: 0.97rem;
    color: var(--field-gray);
    position: relative;
    padding-left: 27px;
    line-height: 1.5;
}

.programitem::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 11px;
    color: var(--grass-green);
    font-weight: 700;
    font-size: 1.1rem;
}

.sessioninfo {
    display: flex;
    gap: 17px;
    justify-content: center;
    flex-wrap: wrap;
}

.sessiondetail {
    background: var(--ocean-blue);
    color: white;
    padding: 9px 19px;
    border-radius: 23px;
    font-size: 0.89rem;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(0, 53, 102, 0.25);
}

.programbenefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 27px;
    margin-top: 59px;
}

.benefitcard {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    padding: 31px 23px;
    border-radius: 17px;
    text-align: center;
    box-shadow: 0 11px 37px rgba(0, 53, 102, 0.09);
    transition: transform 0.29s ease;
}

.benefitcard:hover {
    transform: translateY(-7px);
    box-shadow: 0 17px 51px rgba(0, 53, 102, 0.13);
}

.benefiticon {
    font-size: 2.3rem;
    margin-bottom: 17px;
    width: 67px;
    height: 67px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grass-light);
    border-radius: 50%;
    margin: 0 auto 17px auto;
}

.benefittitle {
    font-size: 1.2rem;
    color: var(--ocean-blue);
    margin-bottom: 13px;
    font-weight: 700;
}

.benefitdesc {
    font-size: 0.95rem;
    color: var(--field-gray);
    line-height: 1.6;
}

/* Hover Effects for Age Cards */
.agecardtoddler:hover .ageicon {
    background: var(--grass-light);
    transform: rotate(15deg) scale(1.1);
}

.agecardkids:hover .ageicon {
    background: #dbeafe;
    transform: rotate(-10deg) scale(1.1);
}

.agecardyouth:hover .ageicon {
    background: var(--gold-shimmer);
    transform: rotate(12deg) scale(1.1);
}

.agecardteen:hover .ageicon {
    background: #ede9fe;
    transform: rotate(-8deg) scale(1.1);
}

/* Media Queries */
@media (max-width: 890px) {
    .traininggroups {
        padding: 71px 17px;
    }
    
    .agegrid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 27px;
        margin-bottom: 53px;
    }
    
    .agecard {
        padding: 29px 21px;
    }
    
    .programbenefits {
        grid-template-columns: 1fr;
        gap: 21px;
        margin-top: 43px;
    }
}

@media (max-width: 640px) {
    .agegrid {
        grid-template-columns: 1fr;
        gap: 23px;
    }
    
    .ageiconbox {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 13px;
    }
    
    .ageicon {
        font-size: 2.3rem;
        width: 63px;
        height: 63px;
    }
    
    .agerange {
        font-size: 1.2rem;
    }
    
    .agegroupname {
        font-size: 1.5rem;
    }
    
    .sessioninfo {
        justify-content: center;
        gap: 11px;
    }
    
    .sessiondetail {
        padding: 7px 15px;
        font-size: 0.83rem;
    }
}

















/* Training Program Section Styles */

.trainingprogram {
    padding: 103px 23px;
    background: linear-gradient(156deg, #ffffff 0%, var(--sky-mist) 45%, #ffffff 100%);
    position: relative;
}

.programoverview {
    margin-bottom: 67px;
    display: flex;
    justify-content: center;
}

.overviewcard {
    max-width: 780px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px);
    border-radius: 23px;
    padding: 43px 39px;
    box-shadow: 0 19px 57px rgba(0, 53, 102, 0.14);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.cardheader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 19px;
    margin-bottom: 23px;
}

.programicon {
    font-size: 2.6rem;
    width: 71px;
    height: 71px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grass-light);
    border-radius: 50%;
    box-shadow: 0 9px 27px rgba(34, 197, 94, 0.15);
}

.cardtitle {
    font-family: 'Georgia', serif;
    font-size: 2.1rem;
    color: var(--ocean-blue);
    font-weight: 700;
    margin: 0;
}

.carddescription {
    font-size: 1.17rem;
    line-height: 1.7;
    color: var(--field-gray);
    font-weight: 400;
}

.trainingpillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 37px;
    margin-bottom: 83px;
}

.pillarcard {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(15px);
    border-radius: 19px;
    padding: 35px 27px;
    box-shadow: 0 15px 47px rgba(0, 53, 102, 0.12);
    transition: all 0.39s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.pillarcard:hover {
    transform: translateY(-11px) rotate(0.5deg);
    box-shadow: 0 25px 73px rgba(0, 53, 102, 0.17);
}

.pillariconbox {
    text-align: center;
    margin-bottom: 29px;
}

.pillaricon {
    font-size: 3.2rem;
    width: 83px;
    height: 83px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 11px 33px rgba(0, 53, 102, 0.13);
    transition: transform 0.33s ease;
}

.pillarcard:hover .pillaricon {
    transform: scale(1.12) rotate(8deg);
}

.techniquecard .pillaricon {
    background: linear-gradient(135deg, var(--grass-light) 0%, #dcfce7 100%);
}

.tacticscard .pillaricon {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.physicalcard .pillaricon {
    background: linear-gradient(135deg, var(--sunset-pale) 0%, #fed7aa 100%);
}

.mentalcard .pillaricon {
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
}

.pillarcontent {
    text-align: left;
}

.pillartitle {
    font-family: 'Georgia', serif;
    font-size: 1.6rem;
    color: var(--ocean-blue);
    margin-bottom: 27px;
    font-weight: 700;
    text-align: center;
}

.pillarfeatures {
    display: flex;
    flex-direction: column;
    gap: 23px;
}

.featuregroup {
    background: rgba(0, 53, 102, 0.03);
    border-radius: 13px;
    padding: 21px 19px;
    border: 1px solid rgba(0, 53, 102, 0.07);
}

.featuretitle {
    font-size: 1.05rem;
    color: var(--deep-navy);
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featurelist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.featureitem {
    padding: 7px 0;
    font-size: 0.92rem;
    color: var(--field-gray);
    position: relative;
    padding-left: 23px;
    line-height: 1.5;
}

.featureitem::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 7px;
    color: var(--grass-green);
    font-weight: 900;
    font-size: 1.2rem;
}

.competitionprogram {
    margin-bottom: 71px;
}

.competitionheader {
    text-align: center;
    margin-bottom: 47px;
}

.competitiontitle {
    font-family: 'Georgia', serif;
    font-size: 2.3rem;
    color: var(--ocean-blue);
    margin-bottom: 17px;
    font-weight: 700;
}

.competitionsubtitle {
    font-size: 1.13rem;
    color: var(--field-gray);
    font-weight: 500;
}

.competitiongrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 31px;
}

.competitioncard {
    background: rgba(255, 255, 255, 0.91);
    backdrop-filter: blur(16px);
    border-radius: 17px;
    padding: 31px 25px;
    box-shadow: 0 13px 41px rgba(0, 53, 102, 0.11);
    text-align: center;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
}

.competitioncard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    border-radius: 17px 17px 0 0;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.competitioncard:hover {
    transform: translateY(-9px) scale(1.02);
    box-shadow: 0 21px 63px rgba(0, 53, 102, 0.16);
}

.competitioncard:hover::before {
    opacity: 1;
}

.localcard::before {
    background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
}

.regionalcard::before {
    background: linear-gradient(90deg, #eab308 0%, #ca8a04 100%);
}

.nationalcard::before {
    background: linear-gradient(90deg, #8b5cf6 0%, #7c3aed 100%);
}

.competitioniconbox {
    margin-bottom: 21px;
}

.competitionicon {
    font-size: 2.7rem;
    width: 73px;
    height: 73px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--sky-mist);
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(0, 53, 102, 0.12);
}

.competitionname {
    font-size: 1.4rem;
    color: var(--ocean-blue);
    margin-bottom: 23px;
    font-weight: 700;
}

.competitionlist {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.competitionitem {
    padding: 9px 0;
    font-size: 0.94rem;
    color: var(--field-gray);
    position: relative;
    padding-left: 25px;
    line-height: 1.5;
}

.competitionitem::before {
    content: '🏅';
    position: absolute;
    left: 0;
    top: 9px;
    font-size: 0.9rem;
}

.seasonschedule {
    margin-top: 67px;
}

.scheduletitle {
    font-family: 'Georgia', serif;
    font-size: 2.1rem;
    color: var(--ocean-blue);
    text-align: center;
    margin-bottom: 43px;
    font-weight: 700;
}

.schedulegrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 29px;
}

.schedulecard {
    background: rgba(255, 255, 255, 0.89);
    backdrop-filter: blur(14px);
    border-radius: 17px;
    padding: 29px 23px;
    box-shadow: 0 11px 37px rgba(0, 53, 102, 0.10);
    transition: transform 0.31s ease;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.schedulecard:hover {
    transform: translateY(-7px);
    box-shadow: 0 17px 51px rgba(0, 53, 102, 0.14);
}

.seasonheader {
    text-align: center;
    margin-bottom: 25px;
}

.seasonicon {
    font-size: 2.4rem;
    display: block;
    margin-bottom: 13px;
}

.seasonname {
    font-size: 1.3rem;
    color: var(--ocean-blue);
    margin-bottom: 7px;
    font-weight: 700;
}

.seasonperiod {
    font-size: 0.97rem;
    color: var(--field-gray);
    font-weight: 600;
    background: var(--sky-mist);
    padding: 5px 15px;
    border-radius: 15px;
    display: inline-block;
}

.seasonactivities {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.activityitem {
    padding: 8px 0;
    font-size: 0.91rem;
    color: var(--field-gray);
    position: relative;
    padding-left: 23px;
    line-height: 1.5;
}

.activityitem::before {
    content: '📅';
    position: absolute;
    left: 0;
    top: 8px;
    font-size: 0.85rem;
}

/* Media Queries */
@media (max-width: 890px) {
    .trainingprogram {
        padding: 77px 17px;
    }
    
    .trainingpillars {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 29px;
        margin-bottom: 63px;
    }
    
    .competitiongrid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 25px;
    }
    
    .schedulegrid {
        grid-template-columns: 1fr;
        gap: 23px;
    }
}

@media (max-width: 640px) {
    .overviewcard {
        padding: 31px 23px;
    }
    
    .cardheader {
        flex-direction: column;
        gap: 15px;
    }
    
    .cardtitle {
        font-size: 1.7rem;
    }
    
    .carddescription {
        font-size: 1.05rem;
    }
    
    .trainingpillars {
        grid-template-columns: 1fr;
        gap: 23px;
    }
    
    .pillarcard {
        padding: 27px 21px;
    }
    
    .competitiongrid {
        grid-template-columns: 1fr;
        gap: 21px;
    }
}
















/* Training Schedule Section Styles */

.trainingschedule {
    padding: 91px 23px;
    background: linear-gradient(148deg, var(--sky-mist) 0%, #ffffff 55%, var(--sky-mist) 100%);
    position: relative;
}

.schedulecontent {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 47px;
    align-items: start;
    margin-bottom: 67px;
}

.schedulevisuals {
    display: flex;
    flex-direction: column;
    gap: 27px;
}

.visualcard {
    position: relative;
    border-radius: 19px;
    overflow: hidden;
    box-shadow: 0 15px 43px rgba(0, 53, 102, 0.14);
    transition: transform 0.35s ease;
}

.visualcard:hover {
    transform: scale(1.03) rotate(1deg);
}

.scheduleimage {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.37s ease;
}

.visualcard:hover .scheduleimage {
    transform: scale(1.08);
}

.imageoverlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 31px 21px 19px 21px;
    color: white;
}

.overlaytext {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.scheduletable {
    background: rgba(255, 255, 255, 0.93);
    backdrop-filter: blur(17px);
    border-radius: 21px;
    padding: 35px 29px;
    box-shadow: 0 17px 51px rgba(0, 53, 102, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.tableheader {
    text-align: center;
    margin-bottom: 37px;
}

.tabletitle {
    font-family: 'Georgia', serif;
    font-size: 1.9rem;
    color: var(--ocean-blue);
    margin-bottom: 11px;
    font-weight: 700;
}

.tablesubtitle {
    font-size: 1.02rem;
    color: var(--field-gray);
    font-weight: 500;
}

.schedulegrid {
    display: grid;
    grid-template-columns: 140px repeat(4, 1fr);
    gap: 3px;
    margin-bottom: 31px;
}

.headerslot {
    background: var(--deep-navy);
    color: white;
    font-weight: 700;
    font-size: 0.89rem;
    text-align: center;
    padding: 17px 9px;
    border-radius: 9px 9px 0 0;
}

.slotlabel {
    display: block;
    line-height: 1.3;
}

.agegroupheader {
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--deep-navy) 100%);
    color: white;
    padding: 17px 11px;
    text-align: center;
    border-radius: 9px 9px 0 0;
}

.agegrouplabel {
    display: block;
    font-size: 0.87rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.groupname {
    display: block;
    font-size: 0.76rem;
    opacity: 0.9;
    font-weight: 500;
}

.dayheader {
    background: var(--grass-green);
    color: white;
    padding: 15px 11px;
    text-align: center;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: 0 0 0 9px;
}

.weekendheader {
    background: var(--victory-gold);
}

.restday {
    background: var(--field-gray);
}

.dayname {
    font-size: 0.85rem;
}

.dayicon {
    font-size: 0.9rem;
}

.trainingslot {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 53, 102, 0.08);
    padding: 13px 9px;
    text-align: center;
    font-size: 0.81rem;
    min-height: 67px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.27s ease;
}

.emptyslot {
    background: rgba(0, 53, 102, 0.04);
    color: var(--field-gray);
    font-weight: 600;
    font-size: 1.1rem;
}

.activeslot {
    background: rgba(255, 255, 255, 0.95);
    cursor: pointer;
    border: 1px solid rgba(0, 53, 102, 0.12);
}

.activeslot:hover {
    transform: scale(1.03);
    box-shadow: 0 7px 21px rgba(0, 53, 102, 0.15);
    z-index: 2;
}

.toddlerslot {
    border-left: 4px solid #22c55e;
}

.kidsslot {
    border-left: 4px solid #3b82f6;
}

.youthslot {
    border-left: 4px solid #eab308;
}

.teenslot {
    border-left: 4px solid #8b5cf6;
}

.specialslot {
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.1) 0%, rgba(234, 179, 8, 0.05) 100%);
    border: 2px solid var(--victory-gold);
}

.restslot {
    background: rgba(100, 116, 139, 0.1);
    border: 1px solid rgba(100, 116, 139, 0.2);
}

.slottime {
    display: block;
    font-weight: 700;
    color: var(--deep-navy);
    font-size: 0.79rem;
    margin-bottom: 3px;
}

.slottype {
    display: block;
    font-size: 0.74rem;
    color: var(--field-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.resttext {
    font-weight: 700;
    color: var(--field-gray);
    font-size: 0.87rem;
}

.restsubtext {
    display: block;
    font-size: 0.71rem;
    margin-top: 3px;
    opacity: 0.8;
}

.schedulelegend {
    background: rgba(0, 53, 102, 0.04);
    border-radius: 13px;
    padding: 21px 19px;
    border: 1px solid rgba(0, 53, 102, 0.08);
}

.legendtitle {
    font-size: 1.05rem;
    color: var(--deep-navy);
    margin-bottom: 17px;
    font-weight: 700;
    text-align: center;
}

.legenditems {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 11px;
}

.legenditem {
    display: flex;
    align-items: center;
    gap: 9px;
}

.legendcolor {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
}

.teknikcolor {
    background: #22c55e;
}

.taktikcolor {
    background: #3b82f6;
}

.kondisyoncolor {
    background: #f97316;
}

.maccolor {
    background: #eab308;
}

.oyuncolor {
    background: #8b5cf6;
}

.ozelcolor {
    background: var(--victory-gold);
}

.legendlabel {
    font-size: 0.83rem;
    color: var(--field-gray);
    font-weight: 600;
}

.scheduleinfo {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 29px;
    margin-top: 51px;
}

.infocard {
    background: rgba(255, 255, 255, 0.89);
    backdrop-filter: blur(14px);
    border-radius: 17px;
    padding: 27px 23px;
    text-align: center;
    box-shadow: 0 11px 35px rgba(0, 53, 102, 0.10);
    transition: transform 0.29s ease;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.infocard:hover {
    transform: translateY(-7px);
    box-shadow: 0 17px 47px rgba(0, 53, 102, 0.14);
}

.infoicon {
    font-size: 2.1rem;
    margin-bottom: 15px;
    width: 61px;
    height: 61px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grass-light);
    border-radius: 50%;
    margin: 0 auto 15px auto;
}

.infotitle {
    font-size: 1.15rem;
    color: var(--ocean-blue);
    margin-bottom: 11px;
    font-weight: 700;
}

.infodesc {
    font-size: 0.91rem;
    color: var(--field-gray);
    line-height: 1.6;
}

/* Media Queries */
@media (max-width: 1100px) {
    .schedulecontent {
        grid-template-columns: 1fr;
        gap: 37px;
    }
    
    .schedulevisuals {
        flex-direction: row;
        gap: 21px;
    }
    
    .visualcard {
        flex: 1;
    }
    
    .scheduleimage {
        height: 200px;
    }
}

@media (max-width: 890px) {
    .trainingschedule {
        padding: 67px 17px;
    }
    
    .schedulegrid {
        grid-template-columns: 110px repeat(4, 1fr);
        gap: 2px;
    }
    
    .headerslot,
    .agegroupheader,
    .dayheader {
        padding: 13px 7px;
    }
    
    .trainingslot {
        padding: 9px 5px;
        min-height: 57px;
    }
    
    .slottime {
        font-size: 0.73rem;
    }
    
    .slottype {
        font-size: 0.69rem;
    }
    
    .legenditems {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 9px;
    }
}

@media (max-width: 640px) {
    .schedulevisuals {
        flex-direction: column;
    }
    
    .schedulegrid {
        grid-template-columns: 90px repeat(4, 1fr);
        gap: 1px;
        font-size: 0.85rem;
    }
    
    .scheduletable {
        padding: 23px 15px;
    }
    
    .headerslot,
    .agegroupheader {
        padding: 11px 5px;
    }
    
    .agegrouplabel {
        font-size: 0.75rem;
    }
    
    .groupname {
        font-size: 0.67rem;
    }
    
    .dayheader {
        padding: 11px 5px;
        flex-direction: column;
        gap: 3px;
    }
    
    .dayname {
        font-size: 0.73rem;
    }
    
    .dayicon {
        font-size: 0.8rem;
    }
    
    .trainingslot {
        padding: 7px 3px;
        min-height: 51px;
    }
    
    .slottime {
        font-size: 0.67rem;
    }
    
    .slottype {
        font-size: 0.63rem;
    }
    
    .legenditems {
        grid-template-columns: 1fr;
        gap: 7px;
    }
    
    .scheduleinfo {
        grid-template-columns: 1fr;
        gap: 21px;
    }
}














/* Footer Section Styles */

.sitefooter {
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--ocean-blue) 100%);
    color: white;
    padding: 67px 23px 31px 23px;
    position: relative;
    overflow: hidden;
}

.sitefooter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(34, 197, 94, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

.footercontent {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 47px;
    margin-bottom: 43px;
    position: relative;
    z-index: 2;
}

.footerbrand {
    max-width: 380px;
}

.footerlogo {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-bottom: 19px;
}

.brandemblem {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(255, 255, 255, 0.15);
}

.brandname {
    font-family: 'Georgia', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.brandmotto {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    font-style: italic;
}

.footercontact,
.footerlinks {
    position: relative;
}

.footertitle {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 23px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contactdetails {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.contactitem {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.contacticon {
    font-size: 1.2rem;
    width: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contacttext {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.footernav {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footerlink {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.27s ease;
    padding: 7px 0;
    border-radius: 5px;
    position: relative;
}

.footerlink::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--grass-green);
    transition: width 0.27s ease;
}

.footerlink:hover {
    color: white;
    padding-left: 19px;
    transform: translateX(5px);
}

.footerlink:hover::before {
    width: 15px;
}

.footerdivider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    margin: 31px 0;
    position: relative;
    z-index: 2;
}

.footerbottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    gap: 19px;
}

.copyrightinfo,
.developercredit {
    flex: 1;
}

.copyrighttext {
    font-size: 0.89rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    font-weight: 500;
}

.credittext {
    font-size: 0.89rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    text-align: right;
    font-weight: 400;
    font-style: italic;
}

/* Hover Effects */
.footerbrand:hover .brandemblem {
    transform: rotate(360deg) scale(1.05);
    transition: transform 0.6s ease;
}

.footerbrand:hover .brandname {
    color: var(--grass-green);
    transition: color 0.3s ease;
}

/* Media Queries */
@media (max-width: 890px) {
    .sitefooter {
        padding: 51px 17px 27px 17px;
    }
    
    .footercontent {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
        margin-bottom: 35px;
    }
    
    .footerbrand {
        grid-column: 1 / -1;
        max-width: 100%;
        text-align: center;
    }
    
    .footerlogo {
        justify-content: center;
    }
    
    .footerbottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .credittext {
        text-align: center;
    }
}

@media (max-width: 640px) {
    .sitefooter {
        padding: 41px 15px 23px 15px;
    }
    
    .footercontent {
        grid-template-columns: 1fr;
        gap: 27px;
        margin-bottom: 29px;
    }
    
    .footerbrand {
        text-align: center;
    }
    
    .footercontact,
    .footerlinks {
        text-align: center;
    }
    
    .contactdetails {
        align-items: center;
    }
    
    .contactitem {
        justify-content: center;
        text-align: left;
    }
    
    .footernav {
        align-items: center;
    }
    
    .footerlink {
        text-align: center;
        display: inline-block;
    }
    
    .footerlink:hover {
        padding-left: 0;
        transform: translateY(-2px);
    }
    
    .footerlink:hover::before {
        display: none;
    }
    
    .brandname {
        font-size: 1.6rem;
    }
    
    .brandmotto {
        font-size: 0.97rem;
    }
}












/* About Page Specific Styles */

.aboutheader {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.aboutintro {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 41px;
    padding: 0 17px;
}

.introvessel {
    max-width: 780px;
    text-align: center;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-radius: 23px;
    padding: 47px 39px;
    box-shadow: 0 19px 57px rgba(0, 53, 102, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.aboutmaintitle {
    font-family: 'Georgia', serif;
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--ocean-blue);
    margin-bottom: 23px;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.aboutleadtext {
    font-size: 1.21rem;
    line-height: 1.7;
    color: var(--field-gray);
    font-weight: 400;
    margin: 0;
}

/* Our Story Section */
.ourstory {
    padding: 89px 23px;
    background: linear-gradient(142deg, #ffffff 0%, var(--sky-mist) 100%);
    position: relative;
}

.storycontent {
    max-width: 1140px;
    margin: 0 auto;
}

.storyblock {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 53px;
    align-items: center;
    margin-bottom: 73px;
}

.storyblock:last-child {
    margin-bottom: 0;
}

.storyreverse {
    grid-template-columns: 1.2fr 1fr;
}

.storyreverse .storyphoto {
    order: 2;
}

.storyreverse .storytext {
    order: 1;
}

.storyphoto {
    position: relative;
    display: flex;
    justify-content: center;
}

.storyimage {
    width: 100%;
    max-width: 420px;
    height: 280px;
    object-fit: cover;
    border-radius: 19px;
    box-shadow: 0 17px 52px rgba(0, 53, 102, 0.18);
    transition: transform 0.35s ease;
}

.storyimage:hover {
    transform: scale(1.03) rotate(1deg);
}

.photobadge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--grass-green);
    color: white;
    border-radius: 50%;
    width: 73px;
    height: 73px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.28);
    border: 4px solid white;
}

.achievementbadge {
    background: var(--victory-gold);
    box-shadow: 0 8px 24px rgba(234, 179, 8, 0.28);
}

.badgeyear {
    font-size: 1.3rem;
    line-height: 1;
    font-family: 'Georgia', serif;
}

.badgelabel {
    font-size: 0.75rem;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.storytext {
    padding: 0 17px;
}

.storytitle {
    font-family: 'Georgia', serif;
    font-size: 2.1rem;
    color: var(--ocean-blue);
    margin-bottom: 23px;
    font-weight: 700;
}

.storyparagraph {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--field-gray);
    margin-bottom: 19px;
    font-weight: 400;
}

.storyparagraph:last-child {
    margin-bottom: 0;
}

/* Mission and Values Section */
.missionvalues {
    padding: 97px 23px;
    background: var(--sky-mist);
    position: relative;
}

.missionvalues::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(34, 197, 94, 0.04) 0%, transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(0, 53, 102, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.valuesheader {
    text-align: center;
    margin-bottom: 67px;
}

.valuesgrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 33px;
    max-width: 1240px;
    margin: 0 auto;
}

.valuecard {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-radius: 19px;
    padding: 35px 27px;
    box-shadow: 0 15px 47px rgba(0, 53, 102, 0.12);
    transition: all 0.39s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.6);
    text-align: center;
}

.valuecard:hover {
    transform: translateY(-11px) rotate(0.8deg);
    box-shadow: 0 25px 73px rgba(0, 53, 102, 0.17);
}

.valueiconbox {
    margin-bottom: 23px;
}

.valueicon {
    font-size: 3.2rem;
    width: 83px;
    height: 83px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 11px 33px rgba(0, 53, 102, 0.13);
    transition: transform 0.33s ease;
}

.valuecard:hover .valueicon {
    transform: scale(1.12) rotate(8deg);
}

.missioncard .valueicon {
    background: linear-gradient(135deg, var(--grass-light) 0%, #dcfce7 100%);
}

.visioncard .valueicon {
    background: linear-gradient(135deg, var(--gold-shimmer) 0%, #fef3c7 100%);
}

.respectcard .valueicon {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.excellencecard .valueicon {
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
}

.teamworkcard .valueicon {
    background: linear-gradient(135deg, var(--sunset-pale) 0%, #fed7aa 100%);
}

.funcard .valueicon {
    background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%);
}

.valuetitle {
    font-size: 1.4rem;
    color: var(--ocean-blue);
    margin-bottom: 17px;
    font-weight: 700;
    font-family: 'Georgia', serif;
}

.valuedescription {
    font-size: 0.97rem;
    line-height: 1.6;
    color: var(--field-gray);
    font-weight: 400;
}

/* Achievements Section */
.achievements {
    padding: 89px 23px;
    background: linear-gradient(156deg, #ffffff 0%, var(--sky-mist) 45%, #ffffff 100%);
    position: relative;
}

.achievementsheader {
    text-align: center;
    margin-bottom: 67px;
}

.achievementsgrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 27px;
    max-width: 1040px;
    margin: 0 auto;
}

.achievementcard {
    background: rgba(255, 255, 255, 0.91);
    backdrop-filter: blur(16px);
    border-radius: 17px;
    padding: 35px 23px;
    text-align: center;
    box-shadow: 0 13px 41px rgba(0, 53, 102, 0.11);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

.achievementcard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--grass-green) 0%, var(--victory-gold) 50%, var(--ocean-blue) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.achievementcard:hover {
    transform: translateY(-9px) scale(1.02);
    box-shadow: 0 21px 63px rgba(0, 53, 102, 0.16);
}

.achievementcard:hover::before {
    opacity: 1;
}

.achievementnumber {
    font-family: 'Georgia', serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--ocean-blue);
    line-height: 1;
    margin-bottom: 11px;
}

.achievementlabel {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--grass-green);
    margin-bottom: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.achievementdesc {
    font-size: 0.89rem;
    color: var(--field-gray);
    line-height: 1.5;
    font-weight: 400;
    margin: 0;
}

/* Media Queries */
@media (max-width: 1100px) {
    .storyblock,
    .storyreverse {
        grid-template-columns: 1fr;
        gap: 37px;
        text-align: center;
    }
    
    .storyreverse .storyphoto,
    .storyreverse .storytext {
        order: initial;
    }
}

@media (max-width: 890px) {
    .aboutheader {
        min-height: 50vh;
    }
    
    .aboutmaintitle {
        font-size: 2.3rem;
    }
    
    .aboutleadtext {
        font-size: 1.1rem;
    }
    
    .introvessel {
        padding: 35px 27px;
    }
    
    .ourstory,
    .missionvalues,
    .achievements {
        padding: 67px 17px;
    }
    
    .storyblock {
        margin-bottom: 53px;
    }
    
    .storytitle {
        font-size: 1.8rem;
    }
    
    .valuesgrid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 27px;
    }
    
    .achievementsgrid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 23px;
    }
}

@media (max-width: 640px) {
    .aboutheader {
        min-height: 45vh;
    }
    
    .aboutmaintitle {
        font-size: 1.9rem;
    }
    
    .aboutleadtext {
        font-size: 1.02rem;
    }
    
    .introvessel {
        padding: 27px 21px;
    }
    
    .ourstory,
    .missionvalues,
    .achievements {
        padding: 51px 15px;
    }
    
    .storyimage {
        height: 220px;
    }
    
    .photobadge {
        width: 63px;
        height: 63px;
        top: -12px;
        right: -12px;
    }
    
    .badgeyear {
        font-size: 1.1rem;
    }
    
    .badgelabel {
        font-size: 0.68rem;
    }
    
    .storytitle {
        font-size: 1.6rem;
    }
    
    .storyparagraph {
        font-size: 0.98rem;
    }
    
    .valuesgrid {
        grid-template-columns: 1fr;
        gap: 23px;
    }
    
    .valuecard {
        padding: 27px 21px;
    }
    
    .valueicon {
        font-size: 2.8rem;
        width: 73px;
        height: 73px;
    }
    
    .valuetitle {
        font-size: 1.25rem;
    }
    
    .valuedescription {
        font-size: 0.93rem;
    }
    
    .achievementsgrid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 19px;
    }
    
    .achievementcard {
        padding: 27px 17px;
    }
    
    .achievementnumber {
        font-size: 2.3rem;
    }
    
    .achievementlabel {
        font-size: 0.95rem;
    }
    
    .achievementdesc {
        font-size: 0.83rem;
    }
}















/* Contacts Page Specific Styles */

.contactheader {
    min-height: 55vh;
    display: flex;
    align-items: center;
}

.contactintro {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 41px;
    padding: 0 17px;
}

.introvessel {
    max-width: 780px;
    text-align: center;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-radius: 23px;
    padding: 47px 39px;
    box-shadow: 0 19px 57px rgba(0, 53, 102, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.contactmaintitle {
    font-family: 'Georgia', serif;
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--ocean-blue);
    margin-bottom: 23px;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.contactleadtext {
    font-size: 1.21rem;
    line-height: 1.7;
    color: var(--field-gray);
    font-weight: 400;
    margin: 0;
}

/* Contact Information Section */
.contactinformation {
    padding: 89px 23px;
    background: linear-gradient(142deg, #ffffff 0%, var(--sky-mist) 100%);
    position: relative;
}

.contactgrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 31px;
    max-width: 1140px;
    margin: 0 auto;
}

.contactcard {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-radius: 19px;
    padding: 35px 27px;
    box-shadow: 0 15px 47px rgba(0, 53, 102, 0.12);
    transition: all 0.39s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.6);
    text-align: center;
}

.contactcard:hover {
    transform: translateY(-11px) rotate(0.5deg);
    box-shadow: 0 25px 73px rgba(0, 53, 102, 0.17);
}

.contacticonbox {
    margin-bottom: 23px;
}

.contacticon {
    font-size: 3.2rem;
    width: 83px;
    height: 83px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 11px 33px rgba(0, 53, 102, 0.13);
    transition: transform 0.33s ease;
}

.contactcard:hover .contacticon {
    transform: scale(1.12) rotate(8deg);
}

.locationcard .contacticon {
    background: linear-gradient(135deg, var(--grass-light) 0%, #dcfce7 100%);
}

.phonecard .contacticon {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.emailcard .contacticon {
    background: linear-gradient(135deg, var(--sunset-pale) 0%, #fed7aa 100%);
}

.hourscard .contacticon {
    background: linear-gradient(135deg, var(--gold-shimmer) 0%, #fef3c7 100%);
}

.contactcardtitle {
    font-size: 1.4rem;
    color: var(--ocean-blue);
    margin-bottom: 17px;
    font-weight: 700;
    font-family: 'Georgia', serif;
}

.contactcardtext {
    font-size: 1.02rem;
    line-height: 1.6;
    color: var(--field-gray);
    font-weight: 400;
    margin-bottom: 21px;
}

.contactaction {
    margin-top: 19px;
}

.actionlink {
    display: inline-block;
    background: var(--grass-green);
    color: white;
    padding: 11px 23px;
    border-radius: 23px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.29s ease;
    box-shadow: 0 6px 18px rgba(34, 197, 94, 0.25);
}

.actionlink:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 9px 27px rgba(34, 197, 94, 0.35);
}

.actiontext {
    font-size: 0.89rem;
    color: var(--field-gray);
    font-weight: 600;
    font-style: italic;
}

/* Contact Form Section */
.contactform {
    padding: 97px 23px;
    background: var(--sky-mist);
    position: relative;
}

.contactform::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(34, 197, 94, 0.04) 0%, transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(0, 53, 102, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.formcontainer {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.formheader {
    text-align: center;
    margin-bottom: 47px;
}

.registrationform {
    background: rgba(255, 255, 255, 0.93);
    backdrop-filter: blur(17px);
    border-radius: 21px;
    padding: 43px 39px;
    box-shadow: 0 17px 51px rgba(0, 53, 102, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.formgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 27px;
}

.inputgroup {
    display: flex;
    flex-direction: column;
}

.fullwidth {
    grid-column: 1 / -1;
}

.halfwidth {
    grid-column: span 1;
}

.inputlabel {
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: 9px;
    display: block;
}

.forminput {
    width: 100%;
    padding: 15px 19px;
    border: 2px solid rgba(0, 53, 102, 0.12);
    border-radius: 11px;
    font-size: 1rem;
    color: var(--deep-navy);
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.27s ease;
    font-family: inherit;
}

.forminput:focus {
    outline: none;
    border-color: var(--grass-green);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
    transform: translateY(-1px);
}

.formselect {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 45px;
}

.formtextarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
    line-height: 1.5;
}

.checkboxgroup {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-top: 7px;
}

.formcheckbox {
    width: 19px;
    height: 19px;
    margin: 0;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkboxlabel {
    font-size: 0.93rem;
    line-height: 1.5;
    color: var(--field-gray);
    cursor: pointer;
    margin: 0;
}

.submitbutton {
    width: 100%;
    background: linear-gradient(134deg, var(--grass-green) 0%, #16a34a 100%);
    color: white;
    padding: 19px 35px;
    border: none;
    border-radius: 11px;
    font-size: 1.13rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.33s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.28);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    margin-top: 17px;
}

.submitbutton:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.4);
}

.submitbutton:active {
    transform: translateY(-1px) scale(0.98);
}

.buttontext {
    font-weight: 700;
}

.buttonicon {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.submitbutton:hover .buttonicon {
    transform: rotate(360deg) scale(1.2);
}

/* Location Map Section */
.locationmap {
    padding: 89px 23px;
    background: linear-gradient(156deg, #ffffff 0%, var(--sky-mist) 45%, #ffffff 100%);
    position: relative;
}

.mapheader {
    text-align: center;
    margin-bottom: 47px;
}

.mapcontainer {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
    border-radius: 21px;
    overflow: hidden;
    box-shadow: 0 17px 51px rgba(0, 53, 102, 0.14);
}

.mapframe {
    width: 100%;
    height: 450px;
    border-radius: 21px;
    overflow: hidden;
}

.mapframe iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.mapoverlay {
    position: absolute;
    top: 23px;
    left: 23px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 17px;
    padding: 23px 27px;
    box-shadow: 0 11px 33px rgba(0, 53, 102, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.7);
    max-width: 280px;
}

.mapinfotitle {
    font-family: 'Georgia', serif;
    font-size: 1.3rem;
    color: var(--ocean-blue);
    margin-bottom: 11px;
    font-weight: 700;
}

.mapinfotext {
    font-size: 0.92rem;
    color: var(--field-gray);
    margin-bottom: 7px;
    line-height: 1.4;
}

.mapinfotext:last-of-type {
    margin-bottom: 17px;
}

.maplink {
    display: inline-block;
    background: var(--ocean-blue);
    color: white;
    padding: 9px 17px;
    border-radius: 17px;
    text-decoration: none;
    font-size: 0.87rem;
    font-weight: 600;
    transition: all 0.27s ease;
}

.maplink:hover {
    background: var(--deep-navy);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 53, 102, 0.25);
}

/* Media Queries */
@media (max-width: 890px) {
    .contactheader {
        min-height: 50vh;
    }
    
    .contactmaintitle {
        font-size: 2.3rem;
    }
    
    .contactleadtext {
        font-size: 1.1rem;
    }
    
    .introvessel {
        padding: 35px 27px;
    }
    
    .contactinformation,
    .contactform,
    .locationmap {
        padding: 67px 17px;
    }
    
    .contactgrid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 27px;
    }
    
    .registrationform {
        padding: 33px 27px;
    }
    
    .formgrid {
        gap: 21px;
    }
    
    .mapoverlay {
        position: static;
        margin-top: 19px;
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .contactheader {
        min-height: 45vh;
    }
    
    .contactmaintitle {
        font-size: 1.9rem;
    }
    
    .contactleadtext {
        font-size: 1.02rem;
    }
    
    .introvessel {
        padding: 27px 21px;
    }
    
    .contactinformation,
    .contactform,
    .locationmap {
        padding: 51px 15px;
    }
    
    .contactgrid {
        grid-template-columns: 1fr;
        gap: 23px;
    }
    
    .contactcard {
        padding: 27px 21px;
    }
    
    .contacticon {
        font-size: 2.8rem;
        width: 73px;
        height: 73px;
    }
    
    .contactcardtitle {
        font-size: 1.25rem;
    }
    
    .contactcardtext {
        font-size: 0.95rem;
    }
    
    .registrationform {
        padding: 27px 21px;
    }
    
    .formgrid {
        grid-template-columns: 1fr;
        gap: 19px;
    }
    
    .halfwidth {
        grid-column: 1;
    }
    
    .forminput {
        padding: 13px 17px;
        font-size: 0.95rem;
    }
    
    .submitbutton {
        padding: 17px 29px;
        font-size: 1.05rem;
    }
    
    .checkboxgroup {
        gap: 11px;
    }
    
    .formcheckbox {
        width: 17px;
        height: 17px;
    }
    
    .checkboxlabel {
        font-size: 0.87rem;
    }
    
    .mapframe {
        height: 350px;
    }
    
    .mapcontainer {
        border-radius: 17px;
    }
    
    .mapframe {
        border-radius: 17px;
    }
    
    .mapoverlay {
        padding: 19px 21px;
        border-radius: 15px;
    }
    
    .mapinfotitle {
        font-size: 1.15rem;
    }
    
    .mapinfotext {
        font-size: 0.87rem;
    }
    
    .maplink {
        padding: 8px 15px;
        font-size: 0.83rem;
    }
}

/* Form Validation Styles */
.forminput:invalid:not(:focus):not(:placeholder-shown) {
    border-color: var(--champion-red);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.forminput:valid:not(:focus):not(:placeholder-shown) {
    border-color: var(--grass-green);
}

/* Loading State for Submit Button */
.submitbutton:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.submitbutton:disabled:hover {
    transform: none;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.28);
}

/* Focus States for Accessibility */
.actionlink:focus,
.maplink:focus {
    outline: 2px solid var(--grass-green);
    outline-offset: 2px;
}

.formcheckbox:focus {
    outline: 2px solid var(--grass-green);
    outline-offset: 2px;
}

/* Additional Hover Effects */
.contactcard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 19px 19px 0 0;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.contactcard:hover::before {
    opacity: 1;
}

.locationcard::before {
    background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
}

.phonecard::before {
    background: linear-gradient(90deg, #3b82f6 0%, #1d4ed8 100%);
}

.emailcard::before {
    background: linear-gradient(90deg, #f97316 0%, #ea580c 100%);
}

.hourscard::before {
    background: linear-gradient(90deg, #eab308 0%, #ca8a04 100%);
}

/* Animation for form submission */
@keyframes submitPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.submitbutton.submitting {
    animation: submitPulse 1s infinite;
}

/* Smooth transitions for all interactive elements */
* {
    transition: border-color 0.27s ease, box-shadow 0.27s ease;
}

/* Print styles */
@media print {
    .contactform,
    .locationmap {
        display: none;
    }
    
    .contactinformation {
        page-break-inside: avoid;
    }
    
    .contactcard {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}
















/* Cookies Page Specific Styles */

.cookiesheader {
    min-height: 55vh;
    display: flex;
    align-items: center;
}

.cookiesintro {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 41px;
    padding: 0 17px;
}

.introvessel {
    max-width: 680px;
    text-align: center;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-radius: 23px;
    padding: 47px 39px;
    box-shadow: 0 19px 57px rgba(0, 53, 102, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.cookiesmaintitle {
    font-family: 'Georgia', serif;
    font-size: 2.6rem;
    line-height: 1.2;
    color: var(--ocean-blue);
    margin-bottom: 23px;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.cookiesleadtext {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--field-gray);
    font-weight: 400;
    margin: 0;
}

/* Content Section */
.cookiescontent {
    padding: 89px 23px;
    background: linear-gradient(142deg, #ffffff 0%, var(--sky-mist) 100%);
    position: relative;
}

.contentcontainer {
    max-width: 900px;
    margin: 0 auto;
}

.policyarticle {
    background: rgba(255, 255, 255, 0.93);
    backdrop-filter: blur(17px);
    border-radius: 21px;
    padding: 47px 43px;
    box-shadow: 0 17px 51px rgba(0, 53, 102, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.articlesection {
    margin-bottom: 43px;
    position: relative;
}

.articlesection:last-child {
    margin-bottom: 0;
}

.sectionheading {
    font-family: 'Georgia', serif;
    font-size: 1.8rem;
    color: var(--ocean-blue);
    margin-bottom: 27px;
    font-weight: 700;
    padding-bottom: 11px;
    border-bottom: 3px solid var(--grass-green);
    display: inline-block;
}

.sectioncontent {
    padding-left: 0;
}

.contentparagraph {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--field-gray);
    margin-bottom: 19px;
    font-weight: 400;
}

.contentparagraph:last-child {
    margin-bottom: 0;
}

/* Cookie Type Cards */
.cookietypecard {
    background: rgba(0, 53, 102, 0.04);
    border-radius: 15px;
    padding: 27px 25px;
    margin-bottom: 23px;
    border: 1px solid rgba(0, 53, 102, 0.08);
    transition: all 0.29s ease;
}

.cookietypecard:hover {
    transform: translateY(-3px);
    box-shadow: 0 9px 27px rgba(0, 53, 102, 0.12);
    background: rgba(0, 53, 102, 0.06);
}

.cookietypecard:last-child {
    margin-bottom: 0;
}

.cookietypetitle {
    font-size: 1.25rem;
    color: var(--deep-navy);
    margin-bottom: 13px;
    font-weight: 700;
    font-family: 'Georgia', serif;
}

.cookietypedesc {
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--field-gray);
    font-weight: 400;
    margin: 0;
}

/* Management List */
.managementlist {
    margin-top: 23px;
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.managementitem {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 13px;
    padding: 21px 23px;
    border: 1px solid rgba(0, 53, 102, 0.08);
    transition: all 0.27s ease;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.managementitem:hover {
    transform: translateX(7px);
    box-shadow: 0 6px 20px rgba(0, 53, 102, 0.1);
    border-color: var(--grass-green);
}

.itemlabel {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--ocean-blue);
    display: block;
}

.itemdesc {
    font-size: 0.95rem;
    color: var(--field-gray);
    line-height: 1.5;
    font-weight: 400;
}

/* Update Info */
.updateinfo {
    background: var(--grass-light);
    border-radius: 11px;
    padding: 17px 21px;
    margin-top: 23px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.updatelabel {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--deep-navy);
}

.updatedate {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--grass-green);
    font-family: 'Georgia', serif;
}

/* Section Dividers */
.articlesection::after {
    content: '';
    position: absolute;
    bottom: -22px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 53, 102, 0.15) 50%, transparent 100%);
}

.articlesection:last-child::after {
    display: none;
}

/* Subtle Background Pattern */
.cookiescontent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(34, 197, 94, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 53, 102, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

/* Focus States */
.managementitem:focus-within {
    outline: 2px solid var(--grass-green);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .cookiesheader {
        min-height: auto;
        page-break-after: avoid;
    }
    
    .cookiescontent {
        background: white;
        padding: 20px;
    }
    
    .policyarticle {
        box-shadow: none;
        border: 1px solid #ccc;
        backdrop-filter: none;
    }
    
    .cookietypecard,
    .managementitem {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }
    
    .sectionheading {
        color: #000;
        border-bottom-color: #666;
    }
}

/* Media Queries */
@media (max-width: 890px) {
    .cookiesheader {
        min-height: 50vh;
    }
    
    .cookiesmaintitle {
        font-size: 2.2rem;
    }
    
    .cookiesleadtext {
        font-size: 1.08rem;
    }
    
    .introvessel {
        padding: 35px 27px;
    }
    
    .cookiescontent {
        padding: 67px 17px;
    }
    
    .policyarticle {
        padding: 35px 29px;
    }
    
    .sectionheading {
        font-size: 1.6rem;
    }
    
    .contentparagraph {
        font-size: 1.02rem;
    }
    
    .managementitem {
        padding: 17px 19px;
    }
    
    .managementitem:hover {
        transform: translateX(4px);
    }
}

@media (max-width: 640px) {
    .cookiesheader {
        min-height: 45vh;
    }
    
    .cookiesmaintitle {
        font-size: 1.8rem;
    }
    
    .cookiesleadtext {
        font-size: 1.02rem;
    }
    
    .introvessel {
        padding: 27px 21px;
    }
    
    .cookiescontent {
        padding: 51px 15px;
    }
    
    .policyarticle {
        padding: 27px 21px;
    }
    
    .articlesection {
        margin-bottom: 35px;
    }
    
    .sectionheading {
        font-size: 1.45rem;
        margin-bottom: 21px;
    }
    
    .contentparagraph {
        font-size: 0.98rem;
        margin-bottom: 17px;
    }
    
    .cookietypecard {
        padding: 21px 19px;
        margin-bottom: 19px;
    }
    
    .cookietypetitle {
        font-size: 1.15rem;
        margin-bottom: 11px;
    }
    
    .cookietypedesc {
        font-size: 0.93rem;
    }
    
    .managementlist {
        gap: 15px;
    }
    
    .managementitem {
        padding: 17px 17px;
    }
    
    .itemlabel {
        font-size: 1.02rem;
    }
    
    .itemdesc {
        font-size: 0.89rem;
    }
    
    .updateinfo {
        flex-direction: column;
        gap: 7px;
        text-align: center;
        padding: 15px 17px;
    }
    
    .managementitem:hover {
        transform: translateY(-2px);
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    .cookietypecard,
    .managementitem {
        transition: none;
    }
    
    .cookietypecard:hover,
    .managementitem:hover {
        transform: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .cookietypecard {
        border-color: var(--deep-navy);
        background: rgba(255, 255, 255, 0.9);
    }
    
    .managementitem {
        border-color: var(--ocean-blue);
        background: white;
    }
    
    .sectionheading {
        border-bottom-color: var(--deep-navy);
    }
}





















/* Privacy Page Specific Styles */

.privacyheader {
    min-height: 55vh;
    display: flex;
    align-items: center;
}

.privacyintro {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 41px;
    padding: 0 17px;
}

.introvessel {
    max-width: 720px;
    text-align: center;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-radius: 23px;
    padding: 47px 39px;
    box-shadow: 0 19px 57px rgba(0, 53, 102, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.privacymaintitle {
    font-family: 'Georgia', serif;
    font-size: 2.6rem;
    line-height: 1.2;
    color: var(--ocean-blue);
    margin-bottom: 23px;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.privacyleadtext {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--field-gray);
    font-weight: 400;
    margin: 0;
}

/* Content Section */
.privacycontent {
    padding: 89px 23px;
    background: linear-gradient(142deg, #ffffff 0%, var(--sky-mist) 100%);
    position: relative;
}

.contentcontainer {
    max-width: 920px;
    margin: 0 auto;
}

.policydocument {
    background: rgba(255, 255, 255, 0.93);
    backdrop-filter: blur(17px);
    border-radius: 21px;
    padding: 47px 43px;
    box-shadow: 0 17px 51px rgba(0, 53, 102, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.documentsection {
    margin-bottom: 47px;
    position: relative;
}

.documentsection:last-child {
    margin-bottom: 0;
}

.sectiontitle {
    font-family: 'Georgia', serif;
    font-size: 1.8rem;
    color: var(--ocean-blue);
    margin-bottom: 27px;
    font-weight: 700;
    padding-bottom: 11px;
    border-bottom: 3px solid var(--grass-green);
    display: inline-block;
}

.sectionbody {
    padding-left: 0;
}

.policyparagraph {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--field-gray);
    margin-bottom: 19px;
    font-weight: 400;
}

.policyparagraph:last-child {
    margin-bottom: 0;
}

/* Data Groups */
.datagroup {
    background: rgba(0, 53, 102, 0.04);
    border-radius: 15px;
    padding: 25px 23px;
    margin-bottom: 21px;
    border: 1px solid rgba(0, 53, 102, 0.08);
    transition: all 0.29s ease;
}

.datagroup:hover {
    transform: translateY(-3px);
    box-shadow: 0 9px 27px rgba(0, 53, 102, 0.12);
    background: rgba(0, 53, 102, 0.06);
}

.datagroup:last-child {
    margin-bottom: 0;
}

.datagroupheading {
    font-size: 1.2rem;
    color: var(--deep-navy);
    margin-bottom: 11px;
    font-weight: 700;
    font-family: 'Georgia', serif;
}

.datagrouptext {
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--field-gray);
    font-weight: 400;
    margin: 0;
}

/* Purpose List */
.purposelist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 19px;
    margin-top: 23px;
}

.purposeitem {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 13px;
    padding: 21px 23px;
    border: 1px solid rgba(0, 53, 102, 0.08);
    transition: all 0.27s ease;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.purposeitem:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 53, 102, 0.1);
    border-color: var(--grass-green);
}

.purposetitle {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--ocean-blue);
    display: block;
}

.purposedesc {
    font-size: 0.95rem;
    color: var(--field-gray);
    line-height: 1.5;
    font-weight: 400;
}

/* Security Measures */
.securitymeasures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 21px;
    margin-top: 27px;
}

.measureblock {
    background: var(--grass-light);
    border-radius: 13px;
    padding: 21px 19px;
    border: 1px solid rgba(34, 197, 94, 0.2);
    transition: all 0.27s ease;
}

.measureblock:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(34, 197, 94, 0.15);
}

.measuretitle {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 9px;
}

.measuretext {
    font-size: 0.93rem;
    color: var(--field-gray);
    line-height: 1.5;
    margin: 0;
}

/* Retention Info */
.retentioninfo {
    background: rgba(234, 179, 8, 0.1);
    border-radius: 11px;
    padding: 17px 21px;
    margin-top: 23px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(234, 179, 8, 0.3);
}

.retentionlabel {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--deep-navy);
}

.retentionperiod {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--victory-gold);
    font-family: 'Georgia', serif;
}

/* Rights List */
.rightslist {
    display: flex;
    flex-direction: column;
    gap: 17px;
    margin-top: 23px;
}

.rightitem {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 13px;
    padding: 19px 21px;
    border: 1px solid rgba(0, 53, 102, 0.08);
    transition: all 0.27s ease;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.rightitem:hover {
    transform: translateX(7px);
    box-shadow: 0 6px 20px rgba(0, 53, 102, 0.1);
    border-color: var(--ocean-blue);
}

.rightname {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--ocean-blue);
    display: block;
}

.rightdesc {
    font-size: 0.95rem;
    color: var(--field-gray);
    line-height: 1.5;
    font-weight: 400;
}

/* Version Info */
.versioninfo {
    background: rgba(0, 53, 102, 0.06);
    border-radius: 13px;
    padding: 19px 23px;
    margin-top: 23px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 17px;
    border: 1px solid rgba(0, 53, 102, 0.12);
}

.versiondetail {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: center;
}

.versionlabel {
    font-size: 0.89rem;
    font-weight: 600;
    color: var(--field-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.versionnumber,
.versiondate {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ocean-blue);
    font-family: 'Georgia', serif;
}

/* Section Dividers */
.documentsection::after {
    content: '';
    position: absolute;
    bottom: -24px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 53, 102, 0.15) 50%, transparent 100%);
}

.documentsection:last-child::after {
    display: none;
}

/* Subtle Background Pattern */
.privacycontent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(34, 197, 94, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 53, 102, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

/* Print Styles */
@media print {
    .privacyheader {
        min-height: auto;
        page-break-after: avoid;
    }
    
    .privacycontent {
        background: white;
        padding: 20px;
    }
    
    .policydocument {
        box-shadow: none;
        border: 1px solid #ccc;
        backdrop-filter: none;
    }
    
    .datagroup,
    .purposeitem,
    .measureblock,
    .rightitem {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }
    
    .sectiontitle {
        color: #000;
        border-bottom-color: #666;
    }
}

/* Media Queries */
@media (max-width: 890px) {
    .privacyheader {
        min-height: 50vh;
    }
    
    .privacymaintitle {
        font-size: 2.2rem;
    }
    
    .privacyleadtext {
        font-size: 1.08rem;
    }
    
    .introvessel {
        padding: 35px 27px;
    }
    
    .privacycontent {
        padding: 67px 17px;
    }
    
    .policydocument {
        padding: 35px 29px;
    }
    
    .sectiontitle {
        font-size: 1.6rem;
    }
    
    .policyparagraph {
        font-size: 1.02rem;
    }
    
    .purposelist {
        grid-template-columns: 1fr;
        gap: 17px;
    }
    
    .securitymeasures {
        grid-template-columns: 1fr;
        gap: 17px;
    }
    
    .rightitem:hover {
        transform: translateX(4px);
    }
    
    .retentioninfo {
        flex-direction: column;
        gap: 9px;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .privacyheader {
        min-height: 45vh;
    }
    
    .privacymaintitle {
        font-size: 1.8rem;
    }
    
    .privacyleadtext {
        font-size: 1.02rem;
    }
    
    .introvessel {
        padding: 27px 21px;
    }
    
    .privacycontent {
        padding: 51px 15px;
    }
    
    .policydocument {
        padding: 27px 21px;
    }
    
    .documentsection {
        margin-bottom: 37px;
    }
    
    .sectiontitle {
        font-size: 1.45rem;
        margin-bottom: 21px;
    }
    
    .policyparagraph {
        font-size: 0.98rem;
        margin-bottom: 17px;
    }
    
    .datagroup {
        padding: 19px 17px;
        margin-bottom: 17px;
    }
    
    .datagroupheading {
        font-size: 1.1rem;
        margin-bottom: 9px;
    }
    
    .datagrouptext {
        font-size: 0.93rem;
    }
    
    .purposeitem {
        padding: 17px 19px;
    }
    
    .purposetitle {
        font-size: 1.02rem;
    }
    
    .purposedesc {
        font-size: 0.89rem;
    }
    
    .measureblock {
        padding: 17px 15px;
    }
    
    .measuretitle {
        font-size: 1rem;
        margin-bottom: 7px;
    }
    
    .measuretext {
        font-size: 0.87rem;
    }
    
    .rightslist {
        gap: 15px;
    }
    
    .rightitem {
        padding: 17px 17px;
    }
    
    .rightname {
        font-size: 1.02rem;
    }
    
    .rightdesc {
        font-size: 0.89rem;
    }
    
    .versioninfo {
        grid-template-columns: 1fr;
        gap: 13px;
        padding: 17px 19px;
    }
    
    .versiondetail {
        text-align: center;
    }
    
    .rightitem:hover {
        transform: translateY(-2px);
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    .datagroup,
    .purposeitem,
    .measureblock,
    .rightitem {
        transition: none;
    }
    
    .datagroup:hover,
    .purposeitem:hover,
    .measureblock:hover,
    .rightitem:hover {
        transform: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .datagroup,
    .purposeitem,
    .measureblock,
    .rightitem {
        border-color: var(--deep-navy);
        background: rgba(255, 255, 255, 0.9);
    }
    
    .sectiontitle {
        border-bottom-color: var(--deep-navy);
    }
    
    .retentioninfo,
    .versioninfo {
        border-color: var(--ocean-blue);
    }
}


















/* Terms Page Specific Styles */

.termsheader {
    min-height: 55vh;
    display: flex;
    align-items: center;
}

.termsintro {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 41px;
    padding: 0 17px;
}

.introvessel {
    max-width: 720px;
    text-align: center;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-radius: 23px;
    padding: 47px 39px;
    box-shadow: 0 19px 57px rgba(0, 53, 102, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.termsmaintitle {
    font-family: 'Georgia', serif;
    font-size: 2.6rem;
    line-height: 1.2;
    color: var(--ocean-blue);
    margin-bottom: 23px;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.termsleadtext {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--field-gray);
    font-weight: 400;
    margin: 0;
}

/* Content Section */
.termscontent {
    padding: 89px 23px;
    background: linear-gradient(142deg, #ffffff 0%, var(--sky-mist) 100%);
    position: relative;
}

.contentcontainer {
    max-width: 920px;
    margin: 0 auto;
}

.termsdocument {
    background: rgba(255, 255, 255, 0.93);
    backdrop-filter: blur(17px);
    border-radius: 21px;
    padding: 47px 43px;
    box-shadow: 0 17px 51px rgba(0, 53, 102, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.termsection {
    margin-bottom: 47px;
    position: relative;
}

.termsection:last-child {
    margin-bottom: 0;
}

.termstitle {
    font-family: 'Georgia', serif;
    font-size: 1.8rem;
    color: var(--ocean-blue);
    margin-bottom: 27px;
    font-weight: 700;
    padding-bottom: 11px;
    border-bottom: 3px solid var(--grass-green);
    display: inline-block;
}

.termsbody {
    padding-left: 0;
}

.termsparagraph {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--field-gray);
    margin-bottom: 19px;
    font-weight: 400;
}

.termsparagraph:last-child {
    margin-bottom: 0;
}

/* Content Blocks */
.contentblock {
    background: rgba(0, 53, 102, 0.04);
    border-radius: 15px;
    padding: 25px 23px;
    margin-bottom: 21px;
    border: 1px solid rgba(0, 53, 102, 0.08);
    transition: all 0.29s ease;
}

.contentblock:hover {
    transform: translateY(-3px);
    box-shadow: 0 9px 27px rgba(0, 53, 102, 0.12);
    background: rgba(0, 53, 102, 0.06);
}

.contentblock:last-child {
    margin-bottom: 0;
}

.blockheading {
    font-size: 1.2rem;
    color: var(--deep-navy);
    margin-bottom: 11px;
    font-weight: 700;
    font-family: 'Georgia', serif;
}

.blocktext {
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--field-gray);
    font-weight: 400;
    margin: 0;
}

/* Disclaimer List */
.disclaimerlist {
    display: flex;
    flex-direction: column;
    gap: 17px;
    margin-top: 23px;
}

.disclaimeritem {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 13px;
    padding: 19px 21px;
    border: 1px solid rgba(0, 53, 102, 0.08);
    transition: all 0.27s ease;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.disclaimeritem:hover {
    transform: translateX(7px);
    box-shadow: 0 6px 20px rgba(0, 53, 102, 0.1);
    border-color: var(--sunset-orange);
}

.disclaimertitle {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--ocean-blue);
    display: block;
}

.disclaimerdesc {
    font-size: 0.95rem;
    color: var(--field-gray);
    line-height: 1.5;
    font-weight: 400;
}

/* Service Terms */
.serviceterms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 21px;
    margin-top: 27px;
}

.serviceblock {
    background: var(--grass-light);
    border-radius: 13px;
    padding: 21px 19px;
    border: 1px solid rgba(34, 197, 94, 0.2);
    transition: all 0.27s ease;
}

.serviceblock:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(34, 197, 94, 0.15);
}

.serviceheading {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 9px;
}

.servicetext {
    font-size: 0.93rem;
    color: var(--field-gray);
    line-height: 1.5;
    margin: 0;
}

/* Obligations List */
.obligationslist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 23px;
}

.obligationitem {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 11px;
    padding: 15px 17px;
    border: 1px solid rgba(0, 53, 102, 0.08);
    transition: all 0.25s ease;
    text-align: center;
}

.obligationitem:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 53, 102, 0.1);
    border-color: var(--grass-green);
}

.obligationtext {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--deep-navy);
    display: block;
}

/* Update Notice */
.updatenotice {
    background: rgba(234, 179, 8, 0.1);
    border-radius: 15px;
    padding: 21px 23px;
    margin-top: 23px;
    border: 1px solid rgba(234, 179, 8, 0.3);
}

.noticeheader {
    margin-bottom: 13px;
}

.noticetitle {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--deep-navy);
    display: block;
}

.noticebody {
    padding-left: 0;
}

.noticetext {
    font-size: 0.95rem;
    color: var(--field-gray);
    line-height: 1.6;
    margin: 0;
}

/* Validity Info */
.validityinfo {
    background: rgba(0, 53, 102, 0.06);
    border-radius: 13px;
    padding: 19px 23px;
    margin-top: 23px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 17px;
    border: 1px solid rgba(0, 53, 102, 0.12);
}

.validityitem {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: center;
}

.validitylabel {
    font-size: 0.89rem;
    font-weight: 600;
    color: var(--field-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.validityvalue {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ocean-blue);
    font-family: 'Georgia', serif;
}

/* Section Dividers */
.termsection::after {
    content: '';
    position: absolute;
    bottom: -24px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 53, 102, 0.15) 50%, transparent 100%);
}

.termsection:last-child::after {
    display: none;
}

/* Subtle Background Pattern */
.termscontent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(34, 197, 94, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 53, 102, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

/* Print Styles */
@media print {
    .termsheader {
        min-height: auto;
        page-break-after: avoid;
    }
    
    .termscontent {
        background: white;
        padding: 20px;
    }
    
    .termsdocument {
        box-shadow: none;
        border: 1px solid #ccc;
        backdrop-filter: none;
    }
    
    .contentblock,
    .disclaimeritem,
    .serviceblock,
    .obligationitem {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }
    
    .termstitle {
        color: #000;
        border-bottom-color: #666;
    }
}

/* Media Queries */
@media (max-width: 890px) {
    .termsheader {
        min-height: 50vh;
    }
    
    .termsmaintitle {
        font-size: 2.2rem;
    }
    
    .termsleadtext {
        font-size: 1.08rem;
    }
    
    .introvessel {
        padding: 35px 27px;
    }
    
    .termscontent {
        padding: 67px 17px;
    }
    
    .termsdocument {
        padding: 35px 29px;
    }
    
    .termstitle {
        font-size: 1.6rem;
    }
    
    .termsparagraph {
        font-size: 1.02rem;
    }
    
    .serviceterms {
        grid-template-columns: 1fr;
        gap: 17px;
    }
    
    .obligationslist {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 13px;
    }
    
    .disclaimeritem:hover {
        transform: translateX(4px);
    }
    
    .validityinfo {
        grid-template-columns: 1fr;
        gap: 13px;
    }
}

@media (max-width: 640px) {
    .termsheader {
        min-height: 45vh;
    }
    
    .termsmaintitle {
        font-size: 1.8rem;
    }
    
    .termsleadtext {
        font-size: 1.02rem;
    }
    
    .introvessel {
        padding: 27px 21px;
    }
    
    .termscontent {
        padding: 51px 15px;
    }
    
    .termsdocument {
        padding: 27px 21px;
    }
    
    .termsection {
        margin-bottom: 37px;
    }
    
    .termstitle {
        font-size: 1.45rem;
        margin-bottom: 21px;
    }
    
    .termsparagraph {
        font-size: 0.98rem;
        margin-bottom: 17px;
    }
    
    .contentblock {
        padding: 19px 17px;
        margin-bottom: 17px;
    }
    
    .blockheading {
        font-size: 1.1rem;
        margin-bottom: 9px;
    }
    
    .blocktext {
        font-size: 0.93rem;
    }
    
    .disclaimerlist {
        gap: 15px;
    }
    
    .disclaimeritem {
        padding: 17px 17px;
    }
    
    .disclaimertitle {
        font-size: 1.02rem;
    }
    
    .disclaimerdesc {
        font-size: 0.89rem;
    }
    
    .serviceblock {
        padding: 17px 15px;
    }
    
    .serviceheading {
        font-size: 1rem;
        margin-bottom: 7px;
    }
    
    .servicetext {
        font-size: 0.87rem;
    }
    
    .obligationslist {
        grid-template-columns: 1fr;
        gap: 11px;
    }
    
    .obligationitem {
        padding: 13px 15px;
    }
    
    .obligationtext {
        font-size: 0.89rem;
    }
    
    .updatenotice {
        padding: 17px 19px;
    }
    
    .noticetitle {
        font-size: 1.02rem;
        margin-bottom: 9px;
    }
    
    .noticetext {
        font-size: 0.89rem;
    }
    
    .validityinfo {
        padding: 17px 19px;
    }
    
    .validityitem {
        text-align: center;
    }
    
    .disclaimeritem:hover {
        transform: translateY(-2px);
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    .contentblock,
    .disclaimeritem,
    .serviceblock,
    .obligationitem {
        transition: none;
    }
    
    .contentblock:hover,
    .disclaimeritem:hover,
    .serviceblock:hover,
    .obligationitem:hover {
        transform: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .contentblock,
    .disclaimeritem,
    .serviceblock,
    .obligationitem {
        border-color: var(--deep-navy);
        background: rgba(255, 255, 255, 0.9);
    }
    
    .termstitle {
        border-bottom-color: var(--deep-navy);
    }
    
    .updatenotice,
    .validityinfo {
        border-color: var(--ocean-blue);
    }
}

/* Focus States for Accessibility */
.disclaimeritem:focus-within,
.serviceblock:focus-within,
.obligationitem:focus-within {
    outline: 2px solid var(--grass-green);
    outline-offset: 2px;
}

/* Additional Hover Effects */
.termsection::before {
    content: '';
    position: absolute;
    top: 0;
    left: -15px;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--grass-green) 0%, var(--ocean-blue) 100%);
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.termsection:hover::before {
    opacity: 1;
}

/* Smooth transitions for all interactive elements */
* {
    transition: border-color 0.27s ease, box-shadow 0.27s ease;
}

/* Special styling for important notices */
.termsparagraph:first-of-type {
    font-size: 1.08rem;
    font-weight: 500;
    color: var(--deep-navy);
    background: rgba(34, 197, 94, 0.05);
    padding: 17px 21px;
    border-radius: 11px;
    border-left: 4px solid var(--grass-green);
}

/* Enhanced readability for legal text */
.termsparagraph strong {
    color: var(--ocean-blue);
    font-weight: 700;
}

.termsparagraph em {
    color: var(--field-gray);
    font-style: italic;
}

/* Responsive text scaling */
@media (max-width: 480px) {
    .termsmaintitle {
        font-size: 1.6rem;
    }
    
    .termsleadtext {
        font-size: 0.98rem;
    }
    
    .termstitle {
        font-size: 1.3rem;
    }
    
    .termsparagraph {
        font-size: 0.93rem;
    }
    
    .termsparagraph:first-of-type {
        font-size: 0.96rem;
        padding: 15px 17px;
    }
    
    .blockheading,
    .serviceheading {
        font-size: 0.98rem;
    }
    
    .blocktext,
    .servicetext {
        font-size: 0.85rem;
    }
    
    .disclaimertitle {
        font-size: 0.96rem;
    }
    
    .disclaimerdesc {
        font-size: 0.83rem;
    }
    
    .obligationtext {
        font-size: 0.85rem;
    }
    
    .noticetitle {
        font-size: 0.96rem;
    }
    
    .noticetext {
        font-size: 0.83rem;
    }
}








/* Thank You Page Specific Styles */

.thankyouheader {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(127deg, var(--sky-mist) 0%, #ffffff 45%, var(--sky-mist) 100%);
}

.thankyoucontent {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 41px;
    padding: 0 17px;
}

.successmessage {
    max-width: 780px;
    text-align: center;
    background: rgba(255, 255, 255, 0.93);
    backdrop-filter: blur(17px);
    border-radius: 23px;
    padding: 47px 39px;
    box-shadow: 0 19px 57px rgba(0, 53, 102, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.successiconbox {
    margin-bottom: 27px;
    display: flex;
    justify-content: center;
}

.successcheck {
    width: 83px;
    height: 83px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--grass-green) 0%, #16a34a 100%);
    position: relative;
    box-shadow: 0 11px 33px rgba(34, 197, 94, 0.25);
    animation: successPulse 2s ease-in-out;
}

.successcheck::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 24px;
    height: 12px;
    border: 4px solid white;
    border-top: none;
    border-left: none;
    animation: checkDraw 0.8s ease-in-out 0.5s both;
}

@keyframes successPulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes checkDraw {
    0% {
        width: 0;
        height: 0;
        opacity: 0;
    }
    50% {
        width: 24px;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 24px;
        height: 12px;
        opacity: 1;
    }
}

.thankyoutitle {
    font-family: 'Georgia', serif;
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--ocean-blue);
    margin-bottom: 23px;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.thankyoutext {
    font-size: 1.21rem;
    line-height: 1.7;
    color: var(--field-gray);
    font-weight: 400;
    margin-bottom: 37px;
}

/* Confirmation Details */
.confirmationdetails {
    background: rgba(0, 53, 102, 0.04);
    border-radius: 17px;
    padding: 29px 27px;
    margin-bottom: 37px;
    border: 1px solid rgba(0, 53, 102, 0.08);
    text-align: left;
}

.confirmationtitle {
    font-family: 'Georgia', serif;
    font-size: 1.4rem;
    color: var(--ocean-blue);
    margin-bottom: 21px;
    font-weight: 700;
    text-align: center;
}

.confirmationinfo {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 17px;
}

.infoitem {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 11px;
    padding: 15px 17px;
    border: 1px solid rgba(0, 53, 102, 0.08);
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.infolabel {
    font-size: 0.89rem;
    font-weight: 600;
    color: var(--field-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.infovalue {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--deep-navy);
}

/* Next Steps */
.nextsteps {
    background: var(--grass-light);
    border-radius: 17px;
    padding: 29px 27px;
    margin-bottom: 37px;
    border: 1px solid rgba(34, 197, 94, 0.2);
    text-align: left;
}

.stepstitle {
    font-family: 'Georgia', serif;
    font-size: 1.4rem;
    color: var(--ocean-blue);
    margin-bottom: 23px;
    font-weight: 700;
    text-align: center;
}

.stepslist {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.stepitem {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 13px;
    padding: 17px 19px;
    border: 1px solid rgba(34, 197, 94, 0.15);
    display: flex;
    align-items: center;
    gap: 17px;
    transition: all 0.27s ease;
}

.stepitem:hover {
    transform: translateX(7px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.15);
}

.stepnumber {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--grass-green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.steptext {
    font-size: 1.02rem;
    color: var(--field-gray);
    font-weight: 500;
    line-height: 1.5;
}

/* Action Buttons */
.actionbuttons {
    display: flex;
    gap: 19px;
    justify-content: center;
    flex-wrap: wrap;
}

.primarybutton {
    background: linear-gradient(134deg, var(--grass-green) 0%, #16a34a 100%);
    color: white;
    padding: 17px 41px;
    border-radius: 11px;
    text-decoration: none;
    font-size: 1.07rem;
    font-weight: 700;
    transition: all 0.33s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.28);
    display: inline-block;
}

.primarybutton:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(34, 197, 94, 0.4);
}

.secondarybutton {
    background: transparent;
    color: var(--ocean-blue);
    padding: 17px 39px;
    border: 2px solid var(--ocean-blue);
    border-radius: 11px;
    text-decoration: none;
    font-size: 1.07rem;
    font-weight: 600;
    transition: all 0.29s ease;
    display: inline-block;
}

.secondarybutton:hover {
    background: var(--ocean-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 53, 102, 0.19);
}

/* Animation delays for staggered effect */
.stepitem:nth-child(1) {
    animation: slideInLeft 0.6s ease-out 0.8s both;
}

.stepitem:nth-child(2) {
    animation: slideInLeft 0.6s ease-out 1s both;
}

.stepitem:nth-child(3) {
    animation: slideInLeft 0.6s ease-out 1.2s both;
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Fade in animation for main content */
.successmessage {
    animation: fadeInUp 0.8s ease-out both;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries */
@media (max-width: 890px) {
    .thankyouheader {
        min-height: 90vh;
    }
    
    .thankyoutitle {
        font-size: 2.3rem;
    }
    
    .thankyoutext {
        font-size: 1.1rem;
    }
    
    .successmessage {
        padding: 35px 27px;
    }
    
    .confirmationinfo {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stepslist {
        gap: 15px;
    }
    
    .stepitem {
        padding: 15px 17px;
        gap: 15px;
    }
    
    .stepnumber {
        width: 32px;
        height: 32px;
        font-size: 0.98rem;
    }
    
    .steptext {
        font-size: 0.98rem;
    }
    
    .actionbuttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .primarybutton,
    .secondarybutton {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .thankyouheader {
        min-height: 85vh;
    }
    
    .thankyoutitle {
        font-size: 1.9rem;
    }
    
    .thankyoutext {
        font-size: 1.02rem;
    }
    
    .successmessage {
        padding: 27px 21px;
    }
    
    .successcheck {
        width: 73px;
        height: 73px;
    }
    
    .successcheck::after {
        width: 20px;
        height: 10px;
    }
    
    .confirmationdetails,
    .nextsteps {
        padding: 23px 21px;
    }
    
    .confirmationtitle,
    .stepstitle {
        font-size: 1.25rem;
        margin-bottom: 17px;
    }
    
    .infoitem {
        padding: 13px 15px;
    }
    
    .infolabel {
        font-size: 0.83rem;
    }
    
    .infovalue {
        font-size: 0.98rem;
    }
    
    .stepitem {
        flex-direction: column;
        text-align: center;
        gap: 11px;
        padding: 17px 15px;
    }
    
    .stepnumber {
        width: 28px;
        height: 28px;
        font-size: 0.89rem;
    }
    
    .steptext {
        font-size: 0.93rem;
    }
    
    .primarybutton,
    .secondarybutton {
        padding: 15px 35px;
        font-size: 1.02rem;
    }
    
    .stepitem:hover {
        transform: translateY(-3px);
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    .successcheck,
    .successmessage,
    .stepitem {
        animation: none;
    }
    
    .stepitem:hover {
        transform: none;
    }
    
    .primarybutton:hover,
    .secondarybutton:hover {
        transform: none;
    }
}

/* Print Styles */
@media print {
    .thankyouheader {
        min-height: auto;
        background: white;
    }
    
    .successmessage {
        box-shadow: none;
        border: 1px solid #ccc;
        backdrop-filter: none;
    }
    
    .actionbuttons {
        display: none;
    }
    
    .confirmationdetails,
    .nextsteps {
        page-break-inside: avoid;
    }
}