:root {
    --primary-color: #3a86ff;
    --primary-light: #e6f0ff;
    --primary-dark: #0b4cb2;
    --secondary-color: #28a745;
    --secondary-light: #d4edda;
    --tertiary-color: #ffc107;
    --tertiary-light: #fff3cd;
    --accent-color: #dc3545;
    --accent-light: #f8d7da;
    --neutral-color: #6c757d;
    --neutral-light: #f8f9fa;
    --info-color: #17a2b8;
    --warning-color: #fd7e14;
    --success-color: #198754;
    --text-color: #212529;
    --background-color: #ffffff;
    --border-color: #dee2e6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lora', serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.containerFluid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.rowLayout {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.columnFull {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
}

.columnHalf {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.columnThird {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 15px;
}

.columnSevenTwelve {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
    padding: 0 15px;
}

.primaryHeader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navigationBar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.brandLogo img {
    height: 40px;
    width: auto;
}

.navToggle {
    display: none;
}

.navToggleLabel {
    display: none;
    cursor: pointer;
    padding: 15px;
    z-index: 2;
}

.hamburgerIcon {
    width: 30px;
    height: 3px;
    background: var(--text-color);
    position: relative;
    transition: all 0.3s ease;
}

.hamburgerIcon:before,
.hamburgerIcon:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s ease;
}

.hamburgerIcon:before {
    top: -8px;
}

.hamburgerIcon:after {
    top: 8px;
}

.navWrapper {
    display: flex;
    align-items: center;
}

.navList {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.navItem {
    margin: 0;
}

.navLink {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.navLink:hover {
    color: var(--primary-color);
}

.heroWrapper {
    margin-top: 80px;
    padding: 140px 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, #fff 100%);
    position: relative;
}

.heroWrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23000" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="%23000" opacity="0.03"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.heroContent {
    position: relative;
    z-index: 2;
    margin-bottom: 42px;
}

.heroContent h1 {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 0;
    font-weight: 700;
    color: var(--primary-dark);
}

.welcomeMessage {
    position: relative;
    z-index: 2;
    margin-bottom: 52px;
}

.subHeading {
    font-size: 1.5rem;
    margin-top: 12px;
    margin-bottom: 22px;
    color: var(--primary-color);
}

.welcomeMessage p {
    margin-bottom: 22px;
    color: var(--neutral-color);
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.7;
}

.sectionSpacing {
    padding: 100px 0 70px;
}

.sectionTitle {
    text-align: center;
    margin-bottom: 50px;
}

.sectionTitle h3 {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.sectionTitle p {
    font-size: 1.1rem;
    color: var(--neutral-color);
    line-height: 1.7;
    margin-bottom: 0;
}

.singleService {
    padding: 30px 25px;
    border: 2px solid var(--neutral-light);
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    text-align: center;
    background: var(--background-color);
}

.singleService:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.serviceIcon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    padding: 20px;
}

.serviceIcon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.singleService h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.singleService p {
    font-size: 0.95rem;
    color: var(--neutral-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

.learnMore {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.learnMore:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.bgLighter {
    background-color: var(--neutral-light);
}

.alignCenter {
    align-items: center;
}

.chooseThumbnail {
    position: relative;
    z-index: 1;
}

.chooseImg {
    width: 100%;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
}

.sectionHeader h2 {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.sectionHeader p {
    font-size: 1.1rem;
    color: var(--neutral-color);
    line-height: 1.7;
}

.chooseContent ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.chooseContent ul li {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.checkIcon {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    filter: hue-rotate(90deg) saturate(1.5);
}

.ftcoSection {
    padding: 100px 0;
    background: var(--background-color);
}

.headingSection {
    text-align: center;
}

.headingSection .subheading {
    font-size: 1rem;
    display: block;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.headingSection h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.carList {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table {
    min-width: 1050px;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    margin: 0;
}

.table th {
    font-weight: 600;
    padding: 25px 20px;
    text-align: center;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.theadPrimary {
    background: transparent;
}

.bgPrimary {
    background: var(--primary-color);
}

.bgDark {
    background: var(--primary-dark);
}

.bgBlack {
    background: #000;
}

.table .heading:after {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 12px 0 12px;
    border-color: var(--primary-color) transparent transparent transparent;
}

.bgDark.heading:after {
    border-color: var(--primary-dark) transparent transparent transparent;
}

.bgBlack.heading:after {
    border-color: #000 transparent transparent transparent;
}

.table tbody tr td {
    vertical-align: middle;
    padding: 30px 20px;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.carImage .img {
    width: 180px;
    height: 100px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin: 0 auto;
}

.productName {
    text-align: left;
    padding-left: 30px;
}

.productName h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.productName p {
    font-size: 0.9rem;
    color: var(--neutral-color);
    margin: 0;
}

.price {
    background: var(--neutral-light);
    border-right: 1px solid white;
    position: relative;
    transition: all 0.3s ease;
}

.price:hover {
    background: var(--success-color);
    color: white;
}

.price:hover .priceRate {
    opacity: 0;
}

.price:hover .btnCustom {
    opacity: 1;
}

.priceRate h3 {
    margin-bottom: 10px;
    position: relative;
}

.priceRate .num {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 600;
}

.priceRate .currency {
    font-size: 1rem;
    position: absolute;
    top: 0;
    left: -15px;
}

.priceRate .per {
    font-size: 0.9rem;
    color: var(--neutral-color);
}

.priceRate .subheading {
    font-size: 0.9rem;
    color: var(--neutral-color);
}

.btnCustom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.btnCustom a {
    padding: 10px 25px;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btnCustom a:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.testimonySection {
    background: var(--neutral-light);
    padding: 100px 0;
}

.testimonyImg {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
}

.headingSection h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 30px;
}

.testimonyWrap {
    padding: 40px;
}

.testimonyWrap .text p {
    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 30px;
}

.userImg {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin-right: 20px;
}

.pos .name {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.pos .position {
    font-size: 0.9rem;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
}

.siteSection {
    padding: 80px 0;
}

.bgLight {
    background-color: var(--neutral-light);
}

.textBlack {
    color: var(--text-color);
}

.formGroup {
    margin-bottom: 25px;
}

.formControl {
    display: block;
    width: 100%;
    padding: 15px 20px;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-color);
    background-color: var(--background-color);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.formControl:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(58, 134, 255, 0.1);
}

.formControl::placeholder {
    color: var(--neutral-color);
}

textarea.formControl {
    height: 120px;
    resize: vertical;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--primary-color);
    color: white;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btnPrimary {
    background: var(--primary-color);
    color: white;
}

.btnBlock {
    display: block;
    width: 100%;
}

.siteFooter {
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
}

.siteFooter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.siteFooter .containerFluid {
    position: relative;
    z-index: 2;
}

.footerHeading {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.siteFooter a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.siteFooter a:hover {
    color: white;
}

.listUnstyled {
    list-style: none;
    padding: 0;
    margin: 0;
}

.listUnstyled li {
    margin-bottom: 10px;
}

.listUnstyled a {
    display: block;
    padding: 5px 0;
}

.pill {
    border-radius: 30px;
}

.textWhite {
    color: white;
}

.textCentered {
    text-align: center;
}

.justifyCenter {
    justify-content: center;
}

.alignCenter {
    align-items: center;
}

.dFlex {
    display: flex;
}

.mb0 { margin-bottom: 0; }
.mb3 { margin-bottom: 1rem; }
.mb4 { margin-bottom: 1.5rem; }
.mb5 { margin-bottom: 3rem; }
.mb50 { margin-bottom: 50px; }
.mb85 { margin-bottom: 85px; }
.mt3 { margin-top: 1rem; }
.mt35 { margin-top: 35px; }
.ml3 { margin-left: 1rem; }
.mrAuto { margin-right: auto; }
.pt5 { padding-top: 3rem; }
.pb4 { padding-bottom: 1.5rem; }
.py2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py5 { padding-top: 3rem; padding-bottom: 3rem; }
.px4 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px5 { padding-left: 3rem; padding-right: 3rem; }
.fontWeightBold { font-weight: 700; }
.ptMd4 { padding-top: 1.5rem; }

@media (max-width: 768px) {
    .navToggleLabel {
        display: block;
    }

    .navWrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--background-color);
        transition: all 0.3s ease;
        padding-top: 100px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        z-index: 999;
    }

    .navList {
        flex-direction: column;
        gap: 0;
        width: 100%;
        text-align: center;
    }

    .navItem {
        width: 100%;
        margin: 20px 0;
    }

    .navLink {
        display: block;
        padding: 15px 30px;
        font-size: 1.2rem;
        border-bottom: 1px solid var(--border-color);
    }

    .navToggle:checked ~ .navWrapper {
        left: 0;
    }

    .navToggle:checked ~ .navToggleLabel .hamburgerIcon {
        background: transparent;
    }

    .navToggle:checked ~ .navToggleLabel .hamburgerIcon:before {
        transform: rotate(45deg);
        top: 0;
    }

    .navToggle:checked ~ .navToggleLabel .hamburgerIcon:after {
        transform: rotate(-45deg);
        top: 0;
    }

    .heroContent h1 {
        font-size: 2.2rem;
    }

    .subHeading {
        font-size: 1.3rem;
    }

    .sectionTitle h3 {
        font-size: 2rem;
    }

    .columnHalf,
    .columnThird {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .sectionSpacing {
        padding: 60px 0 40px;
    }

    .heroWrapper {
        padding: 100px 0;
    }

    .chooseImg {
        height: 300px;
    }

    .testimonyImg {
        height: 300px;
        margin-bottom: 30px;
    }

    .headingSection h2 {
        font-size: 2rem;
    }

    .carList {
        margin-bottom: 30px;
    }

    .table {
        font-size: 0.9rem;
    }

    .table th,
    .table td {
        padding: 15px 10px;
    }

    .carImage .img {
        width: 120px;
        height: 80px;
    }

    .productName {
        padding-left: 15px;
    }

    .priceRate .num {
        font-size: 1.5rem;
    }

    .mbLg0 {
        margin-bottom: 0;
    }

    .mbMd0 {
        margin-bottom: 0;
    }

    .mb4.mbLg0 {
        margin-bottom: 1.5rem;
    }

    .mb3.mbMd0 {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .containerFluid {
        padding: 0 15px;
    }

    .heroContent h1 {
        font-size: 1.8rem;
    }

    .sectionTitle h3 {
        font-size: 1.8rem;
    }

    .headingSection h2 {
        font-size: 1.8rem;
    }

    .singleService {
        padding: 25px 20px;
    }

    .serviceIcon {
        width: 70px;
        height: 70px;
    }

    .serviceIcon img {
        width: 35px;
        height: 35px;
    }

    .chooseContent ul li {
        font-size: 1rem;
    }

    .testimonyWrap {
        padding: 25px;
    }

    .testimonyWrap .text p {
        font-size: 1.1rem;
    }

    .userImg {
        width: 60px;
        height: 60px;
    }
}

.ftcoAnimate {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.singleService:nth-child(1) .serviceIcon {
    background: linear-gradient(135deg, #3a86ff 0%, #0b4cb2 100%);
}

.singleService:nth-child(2) .serviceIcon {
    background: linear-gradient(135deg, #28a745 0%, #198754 100%);
}

.singleService:nth-child(3) .serviceIcon {
    background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
}

.singleService:nth-child(4) .serviceIcon {
    background: linear-gradient(135deg, #dc3545 0%, #c63384 100%);
}

.singleService:nth-child(5) .serviceIcon {
    background: linear-gradient(135deg, #6f42c1 0%, #495057 100%);
}

.singleService:nth-child(6) .serviceIcon {
    background: linear-gradient(135deg, #17a2b8 0%, #0d6efd 100%);
}

.bgImg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.formControl:invalid {
    border-color: var(--accent-color);
}

.formControl:valid {
    border-color: var(--success-color);
}

.singleService::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(58, 134, 255, 0.05) 100%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.singleService:hover::before {
    opacity: 1;
}

.singleService {
    position: relative;
    overflow: hidden;
}

input[type="submit"]:hover {
    cursor: pointer;
}

.table tbody tr:hover {
    background: rgba(58, 134, 255, 0.02);
}

.navWrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(255, 255, 255, 0.9) 100%);
    z-index: -1;
}

@media (max-width: 768px) {
    .navWrapper::before {
        display: block;
    }
}

.testimonyWrap::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: serif;
}

.testimonyWrap {
    position: relative;
}

.priceRate {
    transition: opacity 0.3s ease;
}

.price:hover .priceRate h3 .num {
    color: white;
}

.price:hover .priceRate .per,
.price:hover .priceRate .subheading {
    color: rgba(255, 255, 255, 0.8);
}

.siteFooter .btn.pill {
    border-radius: 30px;
    padding: 12px 25px;
}

.singleService:nth-child(odd) {
    animation-delay: 0.1s;
}

.singleService:nth-child(even) {
    animation-delay: 0.2s;
}

.table .price:last-child {
    border-right: none;
}

.formGroup.rowLayout .columnHalf:first-child {
    padding-right: 10px;
}

.formGroup.rowLayout .columnHalf:last-child {
    padding-left: 10px;
}

@media (max-width: 768px) {
    .formGroup.rowLayout .columnHalf:first-child,
    .formGroup.rowLayout .columnHalf:last-child {
        padding-right: 15px;
        padding-left: 15px;
    }
}

/* Services Page Styles */
.pageHero {
    margin-top: 80px;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, #fff 100%);
    text-align: center;
}

.pageHero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.heroSubtext {
    font-size: 1.2rem;
    color: var(--neutral-color);
    margin-bottom: 0;
}

.courseDetailSection {
    background: var(--background-color);
}

.courseCard {
    background: var(--background-color);
    border: 2px solid var(--neutral-light);
    border-radius: 12px;
    padding: 35px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.courseCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.courseIcon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.courseIcon img {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}

.courseCard h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.courseDescription {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--neutral-color);
    margin-bottom: 25px;
}

.courseFeatures {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.courseFeatures li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-color);
}

.featureIcon {
    width: 16px;
    height: 16px;
    margin-right: 12px;
    filter: hue-rotate(90deg) saturate(1.5);
}

.coursePricing {
    display: flex;
    align-items: baseline;
    margin-bottom: 25px;
}

.priceLabel {
    font-size: 0.9rem;
    color: var(--neutral-color);
    margin-right: 8px;
}

.priceAmount {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.courseBtn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.courseBtn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.processSection {
    background: var(--neutral-light);
}

.processStep {
    text-align: center;
    padding: 25px;
    position: relative;
}

.stepIcon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
}

.stepIcon img {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}

.stepNumber {
    position: absolute;
    bottom: -8px;
    right: -8px;
    background: var(--accent-color);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.processStep h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.processStep p {
    color: var(--neutral-color);
    line-height: 1.6;
}

.benefitsSection {
    background: var(--background-color);
}

.benefitsContent h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--primary-dark);
}

.benefitItem {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.benefitIcon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--success-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.benefitIcon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.benefitText h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.benefitText p {
    color: var(--neutral-color);
    margin-bottom: 0;
    line-height: 1.5;
}

.benefitsImage {
    padding-left: 30px;
}

.benefitsImage img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ctaSection {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 80px 0;
}

.ctaSection h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.ctaSection p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.ctaButtons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.ctaBtn {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.ctaBtn.primary {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.ctaBtn.primary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.ctaBtn.secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.ctaBtn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btnIcon {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

/* Thank You Page Styles */
.thankYouSection {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, #fff 100%);
}

.columnTwoThirds {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    padding: 0 15px;
}

.thankYouContent {
    max-width: 600px;
    margin: 0 auto;
}

.successIcon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--success-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.successIcon img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
}

.thankYouContent h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.thankYouSubtitle {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 400;
}

.thankYouText {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--neutral-color);
    margin-bottom: 50px;
}

.nextSteps {
    margin-bottom: 50px;
}

.nextSteps h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--primary-dark);
}

.stepsList {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stepItem {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: var(--background-color);
    border-radius: 12px;
    border: 2px solid var(--neutral-light);
    transition: all 0.3s ease;
}

.stepItem:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.stepItem .stepIcon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.stepItem .stepIcon img {
    width: 25px;
    height: 25px;
    filter: brightness(0) invert(1);
}

.stepText h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-dark);
}

.stepText p {
    color: var(--neutral-color);
    margin-bottom: 0;
    line-height: 1.5;
}

.quickActions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.actionBtn {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.actionBtn.primary {
    background: var(--primary-color);
    color: white;
}

.actionBtn.primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.actionBtn.secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.actionBtn.secondary:hover {
    background: var(--primary-color);
    color: white;
}

.contactInfo {
    padding: 25px;
    background: var(--primary-light);
    border-radius: 12px;
}

.contactLabel {
    font-size: 1rem;
    color: var(--neutral-color);
    margin-bottom: 15px;
}

.phoneLink {
    display: inline-flex;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.phoneLink:hover {
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.phoneIcon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    filter: hue-rotate(220deg) saturate(1.2);
}

.navLink.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pageHero h1 {
        font-size: 2.2rem;
    }

    .courseCard {
        padding: 25px;
    }

    .coursePricing {
        flex-direction: column;
        align-items: flex-start;
    }

    .priceAmount {
        font-size: 1.8rem;
    }

    .benefitItem {
        flex-direction: column;
        text-align: center;
    }

    .benefitIcon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .benefitsImage {
        padding-left: 0;
        margin-top: 30px;
    }

    .ctaButtons {
        flex-direction: column;
        align-items: center;
    }

    .ctaBtn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .thankYouContent h1 {
        font-size: 2.5rem;
    }

    .thankYouSubtitle {
        font-size: 1.3rem;
    }

    .columnTwoThirds {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .quickActions {
        flex-direction: column;
        align-items: center;
    }

    .actionBtn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}