:root {
    --primary-color: #d63384;
    --primary-light: #fce4ec;
    --primary-dark: #a02952;
    --secondary-color: #e91e63;
    --secondary-light: #fce4ec;
    --tertiary-color: #ff6b9d;
    --tertiary-light: #ffebf0;
    --accent-color: #ff1744;
    --accent-light: #ffebee;
    --neutral-color: #6c757d;
    --neutral-light: #f8f9fa;
    --info-color: #17a2b8;
    --warning-color: #dc3545;
    --success-color: #28a745;
    --text-color: #880e4f;
    --background-color: #ffffff;
    --border-color: #f8bbd9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lora', serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--background-color);
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

h1 {
    font-size: 4.3rem;
    line-height: 1.05;
}

h2 {
    font-size: 3.2rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
    color: var(--neutral-color);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--tertiary-color);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.containerMain {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.containerFluid {
    width: 100%;
    padding: 0 15px;
}

.rowFlex {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.column12 { flex: 0 0 100%; max-width: 100%; }
.columnLg12 { flex: 0 0 100%; max-width: 100%; }
.columnMd12 { flex: 0 0 100%; max-width: 100%; }
.columnLg6 { flex: 0 0 50%; max-width: 50%; }
.columnMd6 { flex: 0 0 50%; max-width: 50%; }
.column6 { flex: 0 0 50%; max-width: 50%; }
.columnLg4 { flex: 0 0 33.33333%; max-width: 33.33333%; }
.columnMd4 { flex: 0 0 33.33333%; max-width: 33.33333%; }
.columnLg3 { flex: 0 0 25%; max-width: 25%; }
.columnMd3 { flex: 0 0 25%; max-width: 25%; }
.columnLg2 { flex: 0 0 16.66667%; max-width: 16.66667%; }
.columnMd2 { flex: 0 0 16.66667%; max-width: 16.66667%; }
.columnFive { flex: 0 0 41.666667%; max-width: 41.666667%; }
.column8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.columnSix { flex: 0 0 50%; max-width: 50%; }
.columnTwelve { flex: 0 0 100%; max-width: 100%; }

[class*="column"] {
    padding: 0 15px;
}

.primaryHeader {
    background: var(--background-color);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.brandLogo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.brandLogo img {
    width: 100px;
    height: 40px;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
    padding: 15px;
    z-index: 2;
}

.hamburger {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.hamburger:before {
    top: -8px;
}

.hamburger:after {
    top: 8px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar-nav {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-item {
    list-style: none;
}

.nav-link {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-color);
}

.heroMainSection {
    position: relative;
    height: 97vh;
    min-height: 620px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.heroOverlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.heroOverlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.52);
}

.heroContentWrapper {
    position: relative;
    z-index: 2;
    margin-top: 9%;
}

.heroTextContent {
    max-width: 600px;
}

.heroMainSection h1 {
    color: #fff;
    font-size: 4.3rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.heroDescription {
    color: #fff;
    font-size: 17px;
    margin-bottom: 2rem;
}

.heroFormWrapper {
    margin-top: 2rem;
}

.inputGroupFlex {
    display: flex;
    gap: 0;
}

.inputFormControl {
    flex: 1;
    height: 57px;
    padding: 0 15px;
    border: 1px solid var(--border-color);
    border-radius: 9999px 0 0 9999px;
    background: #fff;
    font-size: 16px;
    outline: none;
}

.inputFormControl:focus {
    border-color: var(--accent-color);
}

.buttonPrimary {
    background-color: var(--accent-color);
    border: 1px solid var(--accent-color);
    color: #fff;
    padding: 0 24px;
    border-radius: 0 9999px 9999px 0;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.buttonPrimary:hover {
    background-color: var(--tertiary-color);
    border-color: var(--tertiary-color);
}

.aboutMainSection {
    padding: 5em 0;
}

.textBlack {
    color: var(--primary-dark) !important;
}

.h6 {
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.listUnstyled {
    padding-left: 0;
    list-style: none;
}

.textMuted {
    color: var(--neutral-color) !important;
}

.marginBottom3 { margin-bottom: 1rem !important; }
.marginBottom4 { margin-bottom: 1.5rem !important; }
.marginBottom5 { margin-bottom: 3rem !important; }
.marginBottom6 { margin-bottom: 4rem !important; }
.marginTop5 { margin-top: 3rem !important; }
.marginLeftAuto { margin-left: auto !important; }
.marginRightAuto { margin-right: auto !important; }
.marginZero { margin: 0 !important; }
.marginX2 { margin-left: 0.5rem !important; margin-right: 0.5rem !important; }

.imgFluid {
    max-width: 100%;
    height: auto;
}

.widthQuarter {
    width: 25% !important;
}

.statsCounterSection {
    position: relative;
    padding: 7.2em 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.backgroundOverlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 40, 255, 0.42);
    z-index: 1;
}

.statsWrapper {
    position: relative;
    z-index: 2;
    width: 100%;
}

.flexMdCenter {
    display: flex;
    align-items: center;
    justify-content: center;
}

.alignItemsCenter {
    align-items: center;
}

.justifyContentCenter {
    justify-content: center;
}

.flexJustifyCenter {
    display: flex;
    justify-content: center;
}

.metricWrap {
    margin-bottom: 40px;
}

.metricsBlock {
    display: block;
    width: 100%;
    text-align: center;
}

.textCenter {
    text-align: center !important;
}

.counterValue {
    font-weight: 700;
    font-size: 51px;
    color: #fff;
    display: block;
    font-family: 'Helvetica Neue', sans-serif;
    line-height: 1;
}

.metricContent span {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1.1px;
    font-weight: 700;
    margin-top: 10px;
}

.upcomingGamesArea {
    padding: 120px 0 80px;
}

.sectionGap {
    padding: 120px 0;
}

.mainTitle {
    text-align: center;
    margin-bottom: 80px;
}

.mainTitle h2 {
    font-size: 72px;
    color: var(--info-color);
    opacity: 0.1;
    margin: 0;
    line-height: 60px;
}

.mainTitle h1 {
    color: var(--primary-dark);
    margin-top: -40px;
    font-size: 2.5rem;
}

.mainTitle p {
    font-size: 14px;
    line-height: 24px;
    color: var(--neutral-color);
    max-width: 570px;
    margin: 20px auto 0;
}

.newGamesItem {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
    overflow: hidden;
    border-radius: 8px;
}

.newGamesItem:hover .upcomingTitle {
    background: linear-gradient(to right, var(--tertiary-color) 0%, var(--accent-color) 100%);
}

.newGamesItem:hover .upcomingTitle a {
    color: #fff;
}

.upcomingTitle {
    position: absolute;
    background: rgba(0, 53, 102, 0.8);
    top: 50%;
    width: 100%;
    text-align: center;
    transform: translateY(-50%);
    transition: all 0.4s ease;
}

.upcomingTitle h3 {
    font-size: 18px;
    margin: 0;
    padding: 20px;
    transition: all 0.4s ease;
}

.upcomingTitle h3 a {
    color: #fff;
    text-decoration: none;
}

.siteSection {
    padding: 5em 0;
}

.bgWhite {
    background-color: #fefefe !important;
}

.justifyContentCenter {
    justify-content: center;
}

.inlineBlock {
    display: inline-block;
}

.postEntry1 {
    background: #fff;
    padding: 35px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: all 0.35s ease;
}

.postEntry1:hover {
    box-shadow: 0 6px 18px -6px rgba(0, 0, 0, 0.12);
}

.postEntry1 h2 {
    font-size: 21px;
    margin-bottom: 10px;
}

.postEntry1 h2 a {
    color: var(--primary-dark);
}

.postEntry1 h2 a:hover {
    color: var(--accent-color);
}

.postEntry1Contents {
    padding: 24px 0 0;
}

.meta {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--neutral-color);
}

.heightFull {
    height: 100%;
}

.sliderSection {
    position: relative;
    padding: 7em 0;
}

.heading {
    font-size: 60px;
    font-family: 'Helvetica Neue', sans-serif;
    color: var(--primary-dark);
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--neutral-color);
}

.homeSlider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
}

.sliderItem {
    flex: 0 0 300px;
    height: 250px;
}

.sliderItem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.majorCarousel {
    position: relative;
}

.owlCarousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
}

.bgLight {
    background-color: #f4f3f3 !important;
}

.blockHeading1 span {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.12em;
    font-weight: bold;
    color: var(--neutral-color);
}

.blockHeading1 h2 {
    font-size: 3.2rem;
    color: var(--accent-color);
}

.formGroupRow {
    display: flex;
    margin-bottom: 1.5rem;
    gap: 15px;
}

.formControl {
    width: 100%;
    height: 58px;
    padding: 0 15px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    background: #fff;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

.formControl:focus {
    border-color: var(--accent-color);
}

textarea.formControl {
    height: auto;
    padding: 15px;
    resize: vertical;
}

.buttonBlock {
    display: block;
    width: 100%;
}

.textWhite {
    color: #fff !important;
}

.paddingY3 {
    padding-top: 1.1rem !important;
    padding-bottom: 1.1rem !important;
}

.paddingX5 {
    padding-left: 3.2rem !important;
    padding-right: 3.2rem !important;
}

.padding3 {
    padding: 1.1rem !important;
}

.paddingMd5 {
    padding: 3.2rem !important;
}

.displayBlock {
    display: block !important;
}

.footerLink li {
    line-height: 1.6;
}

.ftcoFooter {
    background: #120f0f;
    color: rgba(255, 255, 255, 0.7);
    padding: 7em 0;
    position: relative;
}

.ftcoFooter .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.ftcoFooterWidget {
    position: relative;
    z-index: 2;
}

.ftcoHeading2 {
    font-size: 17px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ftcoFooter p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.ftcoFooter a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.ftcoFooter a:hover {
    color: #fff;
}

.ftcoFooterSocial {
    display: flex;
    gap: 10px;
    margin-top: 2rem;
}

.ftcoFooterSocial li {
    list-style: none;
}

.ftcoFooterSocial li a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    transition: all 0.3s ease;
}

.ftcoFooterSocial li a:hover {
    background: var(--accent-color);
    color: #fff;
}

.block21 {
    display: flex;
    margin-bottom: 1.5rem;
    gap: 15px;
}

.blogImg {
    width: 80px;
    height: 80px;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    flex-shrink: 0;
}

.block21 .text {
    flex: 1;
}

.block21 .heading {
    font-size: 16px;
    margin-bottom: 5px;
}

.block21 .heading a {
    color: #cccccc;
}

.block21 .heading a:hover {
    color: var(--accent-color);
}

.block21 .meta {
    font-size: 12px;
}

.block21 .meta div {
    display: inline-block;
    margin-right: 10px;
}

.block21 .meta a {
    color: #999;
}

.block23 ul {
    list-style: none;
    padding: 0;
}

.block23 ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 15px;
}

.block23 .icon {
    width: 40px;
    font-size: 18px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.block23 .text {
    flex: 1;
    color: rgba(255, 255, 255, 0.7);
}

.floatMdLeft {
    float: left;
}

.floatLft {
    float: left;
}

.flexDisplay {
    display: flex;
}

.marginRight4 {
    margin-right: 1.5rem;
}

.marginLeftMd4 {
    margin-left: 1.5rem;
}

.paddingY2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.marginLg0 {
    margin: 0;
}

@media screen and (max-width: 768px) {
    .nav-toggle-label {
        display: block;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        transition: all 0.3s ease;
        padding-top: 80px;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        z-index: 1000;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        margin: 15px 0;
    }

    .nav-link {
        display: inline-block;
        padding: 10px 20px;
        font-size: 18px;
        color: var(--text-color);
    }

    .nav-toggle:checked ~ .nav-wrapper {
        left: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger {
        background: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:after {
        transform: rotate(-45deg);
        top: 0;
    }

    .heroMainSection h1 {
        font-size: 2.5rem;
    }

    .heroDescription {
        font-size: 16px;
    }

    .inputGroupFlex {
        flex-direction: column;
        gap: 10px;
    }

    .inputFormControl {
        border-radius: 9999px;
    }

    .buttonPrimary {
        border-radius: 9999px;
    }

    .columnLg12, .columnLg6, .columnLg4, .columnLg3, .columnLg2, .columnFive {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .columnMd12, .columnMd6, .columnMd4, .columnMd3, .columnMd2 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .heading {
        font-size: 40px;
    }

    .lead {
        font-size: 16px;
    }

    .mainTitle h2 {
        font-size: 40px;
    }

    .mainTitle h1 {
        font-size: 2rem;
    }

    .sectionGap {
        padding: 60px 0;
    }

    .upcomingGamesArea {
        padding: 40px 0 20px;
    }

    .mainTitle {
        margin-bottom: 30px;
    }

    .metricWrap {
        margin-bottom: 22px;
    }

    .siteSection {
        padding: 3em 0;
    }

    .statsCounterSection {
        padding: 6.1em 0;
    }

    .aboutMainSection {
        padding: 3.2em 0;
    }

    .sliderSection {
        padding: 3em 0;
    }

    .formGroupRow {
        flex-direction: column;
        gap: 0;
    }

    .formGroupRow .columnMd6 {
        margin-bottom: 1rem;
    }

    .marginLg0 {
        margin-bottom: 1rem;
    }

    .backgroundOverlay {
        opacity: 0;
    }

    .homeSlider {
        flex-direction: column;
    }

    .sliderItem {
        flex: 0 0 auto;
        width: 100%;
    }

    .blockHeading1 h2 {
        font-size: 2.5rem;
    }

    .paddingMd5 {
        padding: 1.5rem !important;
    }

    .columnLg4.marginLeftAuto {
        margin-left: 0 !important;
        margin-top: 2rem;
    }

    .ftcoFooter {
        padding: 3em 0;
    }

    .ftcoFooterSocial {
        justify-content: center;
    }

    .marginLeftMd4 {
        margin-left: 0;
    }

    .floatMdLeft {
        float: none;
    }

    .marginMd5 {
        margin-bottom: 2rem !important;
    }
}

@media screen and (min-width: 769px) {
    .nav-wrapper {
        display: flex;
    }

    .navbar-nav {
        display: flex;
        gap: 30px;
    }
}

@media (max-width: 991.98px) {
    .columnLg3, .columnLg4, .columnLg2, .columnLg6, .columnLg12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .backgroundOverlay {
        opacity: 0;
    }

    .statsCounterSection {
        background-position: top center !important;
    }

    .mainTitle h2 {
        font-size: 60px;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.5rem;
    }
}

@media (min-width: 992px) {
    .marginLg0 {
        margin-bottom: 0 !important;
    }

    .paddingMd5 {
        padding: 3.2rem !important;
    }
}

@media (min-width: 1200px) {
    .backgroundOverlay {
        opacity: 0.42;
    }
}

.iconTwitter, .iconFacebook, .iconInstagram, .iconCalendar, .iconPerson, .iconChat, .iconMapMarker, .iconPhone, .iconEnvelope {
    width: 1em;
    height: 1em;
    display: inline-block;
    fill: currentColor;
}

.ftcoSection {
    position: relative;
}

.ftcoAnimate {
    opacity: 1;
    visibility: visible;
}

.animateMetrics {
    opacity: 1;
    visibility: visible;
}

.sectionMetrics {
    position: relative;
}

.mainSection {
    padding: 7.5rem 0;
}

@media (max-width: 991.98px) {
    .mainSection {
        padding: 3.2rem 0;
    }
}

/* Thank You Page Styles */
.thankyouMainSection {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thankyouContentWrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.thankyouCard {
    background: white;
    padding: 60px 40px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 650px;
    width: 100%;
    position: relative;
}

.thankyouIcon {
    margin-bottom: 30px;
}

.checkmarkCircle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--success-color);
    position: relative;
    margin: 0 auto;
    animation: checkmarkPop 0.6s ease-in-out;
}

.checkmarkStem {
    position: absolute;
    width: 3px;
    height: 20px;
    background: white;
    left: 37px;
    top: 35px;
    transform: rotate(45deg);
    transform-origin: bottom;
}

.checkmarkKick {
    position: absolute;
    width: 3px;
    height: 12px;
    background: white;
    left: 37px;
    top: 48px;
    transform: rotate(-45deg);
    transform-origin: bottom;
}

@keyframes checkmarkPop {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.thankyouTitle {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.thankyouMessage {
    font-size: 1.1rem;
    color: var(--neutral-color);
    line-height: 1.8;
    margin-bottom: 40px;
}

.thankyouBenefits {
    margin-bottom: 40px;
    text-align: left;
}

.thankyouBenefits h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 25px;
    text-align: center;
}

.benefitsList {
    list-style: none;
    padding: 0;
}

.benefitsList li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px 0;
    border-bottom: 1px solid var(--primary-light);
}

.benefitsList li:last-child {
    border-bottom: none;
}

.benefitNumber {
    width: 35px;
    height: 35px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    margin-right: 15px;
    flex-shrink: 0;
}

.benefitText {
    flex: 1;
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.6;
}

.thankyouActions {
    margin-top: 40px;
}

.thankyouButton {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 139, 0, 0.3);
}

.thankyouButton:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 139, 0, 0.4);
}

/* Quick Tips Section */
.quickTipsSection {
    padding: 5rem 0;
    background: var(--background-color);
}

.quickTipsWrapper {
    text-align: center;
}

.quickTipsTitle {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 50px;
    font-weight: 600;
}

.quickTipCard {
    background: white;
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.quickTipCard:hover {
    transform: translateY(-5px);
}

.tipIcon {
    margin-bottom: 20px;
}

.tipImage {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.quickTipCard h4 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.quickTipCard p {
    color: var(--neutral-color);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .thankyouMainSection {
        padding: 3rem 0;
    }

    .thankyouCard {
        padding: 40px 25px;
        margin: 0 15px;
    }

    .thankyouTitle {
        font-size: 2rem;
    }

    .thankyouMessage {
        font-size: 16px;
    }

    .quickTipsTitle {
        font-size: 1.8rem;
    }

    .checkmarkCircle {
        width: 60px;
        height: 60px;
    }

    .checkmarkStem {
        left: 28px;
        top: 26px;
        height: 15px;
    }

    .checkmarkKick {
        left: 28px;
        top: 36px;
        height: 9px;
    }

    .benefitNumber {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .benefitText {
        font-size: 14px;
    }
}

@media (max-width: 991.98px) {
    .columnLg4, .columnLg3 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .quickTipsSection {
        padding: 3rem 0;
    }
}