:root {
    --primary-bg: #F2F8FD;
    --white: #fff;
    --accent: #ff1d1d;
    --heading-color: #111;
    --footer-bg: #020202;
    --copyright: #111111;
    --text-color: #6a6a6a;
    --block-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.05);
    --purple: #B47AFF;
    --green: #37BB7D;
    --orange: #FA8747;
    --red: #FF6A6A;
    --teal: #02CECE;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--primary-bg);
    line-height: 1.55;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Jost', sans-serif;
    color: var(--heading-color);
    margin-bottom: 1rem;
    line-height: 1.25;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    background-color: var(--accent);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 29, 29, 0.3);
}


.siteHeader {
    background-color: var(--white);
    box-shadow: var(--block-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.headerContent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    font-family: 'Jost', sans-serif;
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--heading-color);
    text-decoration: none;
}

.logo span {
    color: var(--accent);
}

.navMenu {
    display: flex;
    list-style: none;
    align-items: center;
}

.navMenu li {
    margin-left: 30px;
}

.navMenu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.navMenu a:hover {
    color: var(--accent);
}

.navMenu .btn{
    color: #fff;
    transition: 0.3s;
}

.navMenu .btn:hover{
    color: #f1f1f1;
    transition: 0.3s;
}

.mobileMenuBtn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--heading-color);
    cursor: pointer;
}


.heroBanner {
    padding: 100px 0;
    display: flex;
    background: url('../images/shape-7.png') right center no-repeat;
    background-size: cover;
    align-items: center;
}

.bannerContent {
    flex: 1;
    padding-right: 50px;
}

.bannerSubtitle {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.heroBanner-block{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bannerTitle {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.bannerText {
    margin-bottom: 30px;
    font-size: 18px;
}

.bannerImage {
    flex: 1;
    text-align: center;
    animation: float 6s ease-in-out infinite;
}

.bannerImage img {
    max-width: 100%;
    height: auto;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.aboutFlex{
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.aboutSection {
    padding: 100px 0;
    display: flex;
    align-items: center;
}

.aboutImage {
    flex: 1;
    padding-right: 20px;
}

.aboutImage img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: var(--block-shadow);
}

.aboutContent {
    flex: 1;
}

.aboutList {
    list-style: none;
    margin-top: 20px;
}

.aboutList li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.aboutList i {
    color: var(--accent);
    margin-right: 10px;
    margin-top: 5px;
}


.whyUsSection {
    padding: 100px 0;
}

.sectionTitle {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

.whyUsGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.whyUsCard {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--block-shadow);
    transition: transform 0.3s ease;
}

.whyUsCard:hover {
    transform: translateY(-10px);
}

.cardIcon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: white;
}

.iconPurple { background-color: var(--purple); }
.iconGreen { background-color: var(--green); }
.iconOrange { background-color: var(--orange); }
.iconRed { background-color: var(--red); }


.featuresSection {
    padding: 40px 0 80px 0;
}

.featuresGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.featureCard {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--block-shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.featureCard:hover {
    transform: translateY(-10px);
}

.featureIcon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: white;
}

.iconTeal { background-color: var(--teal); }
.iconRed { background-color: var(--red); }
.iconPurple { background-color: var(--purple); }


.ctaSection {
    padding: 100px 0;
    text-align: center;
    background: url('../images/shape-9.png') right center no-repeat;
    background-size: cover;
    border-radius: 20px;
    
    box-shadow: var(--block-shadow);
}

.ctaTitle {
    font-size: 36px;
    margin-bottom: 20px;
}

.ctaText {
    max-width: 600px;
    margin: 0 auto 30px;
}


.blogSection {
    padding: 100px 0;
}

.blogGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blogCard {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--block-shadow);
    transition: transform 0.3s ease;
}

.blogCard:hover {
    transform: translateY(-10px);
}

.blogImage {
    height: 200px;
    overflow: hidden;
}

.blogImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blogCard:hover .blogImage img {
    transform: scale(1.1);
}

.blogContent {
    padding: 20px;
}

.blogCategory {
    display: inline-block;
    background-color: var(--accent);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 10px;
}

.blogTitle {
    font-size: 18px;
    margin-bottom: 10px;
}

.blogMeta {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 10px;
}


.siteFooter {
    background-color: var(--footer-bg);
    color: white;
    padding: 80px 0 0;
}

.footerContent {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footerLogo {
    font-family: 'Jost', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-decoration: none;
    display: block;
}

.footerLogo span {
    color: var(--accent);
}

.footerAbout {
    margin-bottom: 20px;
}

.footerLinks h3, .footerLegal h3, .footerContact h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
}

.footerLinks ul, .footerLegal ul {
    list-style: none;
}

.footerLinks li, .footerLegal li {
    margin-bottom: 10px;
}

.footerLinks a, .footerLegal a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footerLinks a:hover, .footerLegal a:hover {
    color: white;
}

.contactInfo {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contactInfo i {
    margin-right: 10px;
    color: var(--accent);
    margin-top: 4px;
}

.copyright {
    background-color: var(--copyright);
    padding: 20px 0;
    text-align: center;
    color: #aaa;
    font-size: 14px;
}


.cookiePopup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background-color: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--block-shadow);
    z-index: 1001;
    display: none;
}

.cookieTitle {
    margin-bottom: 10px;
}

.cookieText {
    margin-bottom: 20px;
}

.cookieOptions {
    display: flex;
    gap: 10px;
}

.cookieBtn {
    padding: 8px 20px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    font-weight: 500;
}

.acceptBtn {
    background-color: var(--accent);
    color: white;
}

.declineBtn {
    background-color: #eee;
    color: var(--text-color);
}


.aboutHero {
        padding: 120px 0 80px;
        background: linear-gradient(135deg, #F2F8FD 0%, #ffffff 100%);
    }

    .aboutHeroContent {
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
    }

    .aboutHero h1 {
        font-size: 48px;
        margin-bottom: 20px;
        background: linear-gradient(135deg, #111 0%, #ff1d1d 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .aboutHero p {
        font-size: 20px;
        margin-bottom: 50px;
        color: #6a6a6a;
    }

    .statsGrid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        margin-top: 60px;
    }

    .statItem {
        text-align: center;
    }

    .statNumber {
        font-size: 48px;
        font-weight: 800;
        color: #ff1d1d;
        margin-bottom: 10px;
        font-family: 'Jost', sans-serif;
    }

    .statLabel {
        font-size: 16px;
        color: #6a6a6a;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    
    .missionSection {
        padding: 100px 0;
        background-color: #fff;
    }

    .missionContent {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .missionText h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .missionText p {
        margin-bottom: 20px;
        font-size: 18px;
    }

    .missionPoints {
        margin-top: 40px;
    }

    .missionPoint {
        display: flex;
        align-items: flex-start;
        margin-bottom: 30px;
    }

    .pointIcon {
        width: 60px;
        min-width: 60px;
        height: 60px;
        background: #ff1d1d;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 20px;
        color: white;
        font-size: 24px;
    }

    .pointContent h3 {
        margin-bottom: 10px;
    }

    .missionVisual {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        position: relative;
    }

    .visualCard {
        background: white;
        padding: 30px 20px;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
    }

    .visualCard:hover {
        transform: translateY(-10px);
    }

    .visualCard i {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .card1 i { color: #B47AFF; }
    .card2 i { color: #37BB7D; }
    .card3 i { color: #FA8747; }

    .card1 { grid-column: 1; grid-row: 1; }
    .card2 { grid-column: 2; grid-row: 1; margin-top: 40px; }
    .card3 { grid-column: 1 / span 2; grid-row: 2; }

    
    .technologySection {
        padding: 100px 0;
        background: linear-gradient(135deg, #F2F8FD 0%, #ffffff 100%);
    }

    .techHeader {
        text-align: center;
        max-width: 600px;
        margin: 0 auto 60px;
    }

    .techHeader h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .techGrid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .techItem {
        background: white;
        padding: 40px 30px;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
    }

    .techItem:hover {
        transform: translateY(-10px);
    }

    .techIcon {
        width: 80px;
        height: 80px;
        background: #ff1d1d;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        color: white;
        font-size: 32px;
    }

    .techItem h3 {
        margin-bottom: 15px;
    }

    @media (max-width: 768px) {
        .missionContent,
        .techGrid,
        .statsGrid {
            grid-template-columns: 1fr;
        }
        
        .missionVisual {
            grid-template-columns: 1fr;
        }
        
        .card2 { margin-top: 0; }
        .card3 { grid-column: 1; }
        
        .aboutHero h1 {
            font-size: 36px;
        }
    }

    .contactHero {
        padding: 100px 0 60px;
        background: linear-gradient(135deg, #F2F8FD 0%, #ffffff 100%);
        text-align: center;
    }

    .contactHeroContent {
        max-width: 600px;
        margin: 0 auto;
    }

    .contactHero h1 {
        font-size: 48px;
        margin-bottom: 20px;
        background: linear-gradient(135deg, #111 0%, #ff1d1d 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    
    .contactFormSection {
        padding: 80px 0;
        background-color: #fff;
    }

    .contactFormWrapper {
        max-width: 700px;
        margin: 0 auto;
    }

    .formHeader {
        text-align: center;
        margin-bottom: 50px;
    }

    .formHeader h2 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .contactForm {
        background: #F2F8FD;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.05);
    }

    .formRow {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .formGroup {
        margin-bottom: 25px;
    }

    .formGroup label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: #111;
    }

    .formGroup input,
    .formGroup textarea {
        width: 100%;
        padding: 12px 15px;
        border: 2px solid #e0e0e0;
        border-radius: 8px;
        font-family: 'Inter', sans-serif;
        font-size: 16px;
        transition: border-color 0.3s ease;
    }

    .formGroup input:focus,
    .formGroup textarea:focus {
        outline: none;
        border-color: #ff1d1d;
    }

    .submitBtn {
        position: relative;
        width: 100%;
        padding: 15px;
        font-size: 18px;
    }

    .btnLoader {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    
    .thankYouMessage {
        text-align: center;
        padding: 40px;
        background: #F2F8FD;
        border-radius: 15px;
        box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.05);
    }

    .successIcon {
        font-size: 60px;
        color: #37BB7D;
        margin-bottom: 20px;
    }

    .thankYouMessage h3 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    
    .contactInfoSection {
        padding: 80px 0;
        background: linear-gradient(135deg, #F2F8FD 0%, #ffffff 100%);
    }

    .contactInfoGrid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .contactInfoItem {
        background: white;
        padding: 40px 30px;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
    }

    .contactInfoItem:hover {
        transform: translateY(-10px);
    }

    .contactIcon {
        width: 80px;
        height: 80px;
        background: #ff1d1d;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        color: white;
        font-size: 32px;
    }

    .contactInfoItem h3 {
        margin-bottom: 15px;
    }

    .contactInfoItem p {
        font-size: 18px;
        font-weight: 600;
        color: #111;
        margin-bottom: 10px;
    }

    .contactInfoItem span {
        color: #6a6a6a;
        font-size: 14px;
    }

    
    .mapSection {
        padding: 80px 0;
        background-color: #fff;
    }

    .mapPlaceholder {
        background: linear-gradient(135deg, #F2F8FD 0%, #e8f2fb 100%);
        border-radius: 15px;
        height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.05);
    }

    .mapContent {
        text-align: center;
    }

    .mapContent i {
        font-size: 60px;
        color: #ff1d1d;
        margin-bottom: 20px;
    }

    .mapContent h3 {
        margin-bottom: 10px;
    }

    .mapContent p {
        margin-bottom: 20px;
        color: #6a6a6a;
    }

    .outlineBtn {
        background: transparent;
        border: 2px solid #ff1d1d;
        color: #ff1d1d;
    }

    .outlineBtn:hover {
        background: #ff1d1d;
        color: white;
    }

    @media (max-width: 768px) {
        .formRow,
        .contactInfoGrid {
            grid-template-columns: 1fr;
        }
        
        .contactForm {
            padding: 30px 20px;
        }
        
        .contactHero h1 {
            font-size: 36px;
        }
    }



 .servicesHero {
        padding: 120px 0 80px;
        background: linear-gradient(135deg, #F2F8FD 0%, #ffffff 100%);
        text-align: center;
    }

    .servicesHeroContent {
        max-width: 800px;
        margin: 0 auto;
    }

    .servicesHero h1 {
        font-size: 48px;
        margin-bottom: 20px;
        background: linear-gradient(135deg, #111 0%, #ff1d1d 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .servicesHero p {
        font-size: 20px;
        margin-bottom: 50px;
        color: #6a6a6a;
    }

    .servicesStats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        margin-top: 60px;
    }

    .serviceStat {
        text-align: center;
    }

    .serviceStat .statNumber {
        font-size: 42px;
        font-weight: 800;
        color: #ff1d1d;
        margin-bottom: 10px;
        font-family: 'Jost', sans-serif;
    }

    .serviceStat .statLabel {
        font-size: 16px;
        color: #6a6a6a;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    
    .mainServices {
        padding: 100px 0;
        background-color: #fff;
    }

    .sectionHeader {
        text-align: center;
        max-width: 600px;
        margin: 0 auto 60px;
    }

    .sectionHeader h2 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .servicesGrid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .serviceCard {
        background: #F2F8FD;
        padding: 40px 30px;
        border-radius: 15px;
        box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .serviceCard::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #ff1d1d, #B47AFF);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .serviceCard:hover::before {
        transform: scaleX(1);
    }

    .serviceCard:hover {
        transform: translateY(-10px);
        box-shadow: 0px 20px 60px 0px rgba(0, 0, 0, 0.1);
    }

    .serviceIcon {
        width: 80px;
        height: 80px;
        background: #ff1d1d;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
        color: white;
        font-size: 32px;
    }

    .serviceCard h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .serviceCard p {
        margin-bottom: 20px;
        color: #6a6a6a;
    }

    .serviceFeatures {
        list-style: none;
        margin-bottom: 30px;
    }

    .serviceFeatures li {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
        font-size: 14px;
    }

    .serviceFeatures i {
        color: #37BB7D;
        margin-right: 10px;
        font-size: 12px;
    }

    .serviceCta {
        text-align: center;
    }

    .serviceBtn {
        display: inline-flex;
        align-items: center;
        color: #ff1d1d;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .serviceBtn i {
        margin-left: 8px;
        transition: transform 0.3s ease;
    }

    .serviceBtn:hover i {
        transform: translateX(5px);
    }

    
    .advancedFeatures {
        padding: 100px 0;
        background: linear-gradient(135deg, #F2F8FD 0%, #ffffff 100%);
    }

    .featuresHeader {
        text-align: center;
        margin-bottom: 80px;
    }

    .featuresHeader h2 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .featuresShowcase {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .featureVisual {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        position: relative;
    }

    .visualElement {
        background: white;
        padding: 30px 20px;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
    }

    .visualElement:hover {
        transform: translateY(-5px);
    }

    .visualElement i {
        font-size: 40px;
        margin-bottom: 15px;
        display: block;
    }

    .element1 i { color: #B47AFF; }
    .element2 i { color: #37BB7D; }
    .element3 i { color: #FA8747; }
    .element4 i { color: #02CECE; }

    .featureList {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .featureItem {
        display: flex;
        align-items: flex-start;
        gap: 20px;
    }

    .featureIcon {
        width: 60px;
        height: 60px;
        background: #ff1d1d;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 24px;
        flex-shrink: 0;
    }

    .featureContent h4 {
        margin-bottom: 10px;
        font-size: 20px;
    }

    
    .pricingSection {
        padding: 100px 0;
        background-color: #fff;
    }

    .pricingHeader {
        text-align: center;
        margin-bottom: 60px;
    }

    .pricingGrid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .pricingCard {
        background: #F2F8FD;
        padding: 40px 30px;
        border-radius: 15px;
        box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.05);
        text-align: center;
        position: relative;
        transition: transform 0.3s ease;
    }

    .pricingCard:hover {
        transform: translateY(-10px);
    }

    .pricingCard.featured {
        background: linear-gradient(135deg, #ff1d1d 0%, #B47AFF 100%);
        color: white;
        transform: scale(1.05);
    }

    .pricingCard.featured:hover {
        transform: scale(1.05) translateY(-10px);
    }

    .pricingCard.featured .pricingHeader h3,
    .pricingCard.featured .pricingHeader p,
    .pricingCard.featured .price,
    .pricingCard.featured .pricingFeatures li {
        color: white;
    }

    .popularBadge {
        position: absolute;
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
        background: #37BB7D;
        color: white;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
    }

    .pricingHeader h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .price {
        font-size: 48px;
        font-weight: 800;
        margin-bottom: 10px;
        font-family: 'Jost', sans-serif;
    }

    .price span {
        font-size: 16px;
        font-weight: normal;
    }

    .pricingFeatures {
        list-style: none;
        margin: 30px 0;
        text-align: left;
    }

    .pricingFeatures li {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
        color: #6a6a6a;
    }

    .pricingFeatures i {
        margin-right: 10px;
        width: 20px;
    }

    .pricingFeatures .fa-check {
        color: #37BB7D;
    }

    .pricingFeatures .fa-times {
        color: #FF6A6A;
    }

    .outlineBtn {
        background: transparent;
        border: 2px solid #ff1d1d;
        color: #ff1d1d;
    }

    .outlineBtn:hover {
        background: #ff1d1d;
        color: white;
    }

    
    .integrationSection {
        padding: 100px 0;
        background: linear-gradient(135deg, #F2F8FD 0%, #ffffff 100%);
    }

    .integrationContent {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .integrationText h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .integrationText p {
        margin-bottom: 30px;
        font-size: 18px;
    }

    .integrationList {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 30px;
    }

    .integrationItem {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 15px;
        background: white;
        border-radius: 10px;
        box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.05);
    }

    .integrationItem i {
        font-size: 24px;
        color: #ff1d1d;
        width: 30px;
    }

    .codeWindow {
        background: #1e1e1e;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0px 20px 60px 0px rgba(0, 0, 0, 0.2);
    }

    .windowHeader {
        background: #2d2d2d;
        padding: 15px 20px;
        display: flex;
        align-items: center;
    }

    .windowButtons {
        display: flex;
        gap: 8px;
    }

    .windowButtons span {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        display: block;
    }

    .windowButtons span:nth-child(1) { background: #ff5f57; }
    .windowButtons span:nth-child(2) { background: #ffbd2e; }
    .windowButtons span:nth-child(3) { background: #28ca42; }

    .codeContent {
        padding: 30px;
        font-family: 'Courier New', monospace;
        color: #d4d4d4;
        line-height: 1.5;
    }

    .codeComment { color: #6a9955; }
    .codeKeyword { color: #569cd6; }
    .codeString { color: #ce9178; }

    @media (max-width: 992px) {
        .servicesGrid,
        .pricingGrid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .featuresShowcase,
        .integrationContent {
            grid-template-columns: 1fr;
            gap: 40px;
        }
    }

    @media (max-width: 768px) {
        .servicesGrid,
        .pricingGrid,
        .integrationList,
        .servicesStats {
            grid-template-columns: 1fr;
        }
        
        .servicesHero h1 {
            font-size: 36px;
        }
        
        .pricingCard.featured {
            transform: none;
        }
        
        .pricingCard.featured:hover {
            transform: translateY(-10px);
        }
    }



.policyHero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #F2F8FD 0%, #ffffff 100%);
}

.policyHeader {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.policyHeader h1 {
    font-size: 48px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #111 0%, #ff1d1d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.policyHeader p {
    font-size: 18px;
    color: #6a6a6a;
    font-weight: 500;
}


.policyContent {
    padding: 80px 0;
    background-color: #fff;
}

.contentWrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}


.policyNav {
    position: sticky;
    top: 100px;
    background: #F2F8FD;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.05);
}

.policyNav h4 {
    margin-bottom: 20px;
    color: #111;
    font-size: 18px;
}

.policyNav ul {
    list-style: none;
}

.policyNav li {
    margin-bottom: 12px;
}

.policyNav a {
    color: #6a6a6a;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
    border-left: 3px solid transparent;
    padding-left: 15px;
}

.policyNav a:hover,
.policyNav a:focus {
    color: #ff1d1d;
    border-left-color: #ff1d1d;
}


.policyText {
    max-width: 100%;
}

.introText {
    background: #F2F8FD;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    border-left: 4px solid #ff1d1d;
}

.introText p {
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
    color: #111;
}

.policySection {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eaeaea;
}

.policySection:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.policySection h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #111;
    position: relative;
    padding-left: 20px;
}

.policySection h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #ff1d1d;
    border-radius: 50%;
}

.sectionContent {
    line-height: 1.7;
}

.sectionContent h3 {
    font-size: 20px;
    margin: 25px 0 15px;
    color: #111;
}

.sectionContent p {
    margin-bottom: 20px;
    color: #6a6a6a;
}

.sectionContent ul {
    margin: 20px 0;
    padding-left: 20px;
}

.sectionContent li {
    margin-bottom: 12px;
    color: #6a6a6a;
    position: relative;
    padding-left: 10px;
}

.sectionContent li strong {
    color: #111;
}

.sectionContent a {
    color: #ff1d1d;
    text-decoration: none;
    font-weight: 500;
}

.sectionContent a:hover {
    text-decoration: underline;
}


.contactInfo {
    margin-top: 25px;
}

.contactItem {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px 20px;
    background: #F2F8FD;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.contactItem:hover {
    transform: translateX(10px);
}

.contactItem i {
    color: #ff1d1d;
    margin-right: 15px;
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.contactItem span {
    color: #111;
    font-weight: 500;
}


.contactSection {
    background: #F2F8FD;
    padding: 40px;
    border-radius: 15px;
    margin-top: 50px;
    border-left: 4px solid #ff1d1d;
}

.contactSection h2 {
    margin-bottom: 25px;
}


@media (max-width: 992px) {
    .contentWrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .policyNav {
        position: static;
    }
    
    .policyHeader h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .policyHero {
        padding: 80px 0 40px;
    }
    
    .policyContent {
        padding: 60px 0;
    }
    
    .policySection h2 {
        font-size: 28px;
    }
    
    .introText,
    .contactSection {
        padding: 25px;
    }
    
    .contactItem {
        padding: 12px 15px;
    }
}




.infoBox {
    display: flex;
    align-items: flex-start;
    background: #e8f4fd;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #02CECE;
    margin: 20px 0;
}

.infoIcon {
    color: #02CECE;
    font-size: 24px;
    margin-right: 15px;
    flex-shrink: 0;
}

.infoContent p {
    margin: 0;
    color: #111;
}


.usageGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 25px 0;
}

.usageItem {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: #F2F8FD;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.usageItem:hover {
    transform: translateY(-5px);
}

.usageIcon {
    width: 50px;
    height: 50px;
    background: #ff1d1d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.usageContent h4 {
    margin-bottom: 8px;
    color: #111;
}

.usageContent p {
    margin: 0;
    font-size: 14px;
    color: #6a6a6a;
}


.cookiesTable {
    border: 1px solid #eaeaea;
    border-radius: 10px;
    overflow: hidden;
    margin: 25px 0;
}

.tableHeader {
    display: grid;
    grid-template-columns: 1.5fr 2fr 1fr;
    background: #ff1d1d;
    color: white;
    font-weight: 600;
}

.tableRow {
    display: grid;
    grid-template-columns: 1.5fr 2fr 1fr;
    border-bottom: 1px solid #eaeaea;
}

.tableRow:last-child {
    border-bottom: none;
}

.tableCell {
    padding: 15px 20px;
    display: flex;
    align-items: center;
}

.tableHeader .tableCell {
    padding: 15px 20px;
}

.tableRow:nth-child(even) {
    background: #F2F8FD;
}


.thirdPartyList {
    margin: 25px 0;
}

.thirdPartyItem {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: #F2F8FD;
    border-radius: 10px;
    margin-bottom: 15px;
}

.thirdPartyItem:last-child {
    margin-bottom: 0;
}

.partyLogo {
    width: 50px;
    height: 50px;
    background: #B47AFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.partyContent h4 {
    margin-bottom: 8px;
    color: #111;
}

.partyContent p {
    margin: 0;
    color: #6a6a6a;
}


.noticeBox {
    display: flex;
    align-items: flex-start;
    background: #fff3cd;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #ffc107;
    margin: 20px 0;
}

.noticeIcon {
    color: #856404;
    font-size: 24px;
    margin-right: 15px;
    flex-shrink: 0;
}

.noticeContent p {
    margin: 0;
    color: #856404;
}


.managementOptions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 25px 0;
}

.optionCard {
    background: #F2F8FD;
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.optionCard:hover {
    transform: translateY(-5px);
}

.optionIcon {
    width: 60px;
    height: 60px;
    background: #37BB7D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 24px;
}

.optionCard h4 {
    margin-bottom: 15px;
    color: #111;
}

.optionCard p {
    margin-bottom: 15px;
    color: #6a6a6a;
    font-size: 14px;
}

.optionCard ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.optionCard li {
    margin-bottom: 8px;
}

.optionCard a {
    color: #ff1d1d;
    text-decoration: none;
    font-size: 14px;
}

.optionCard a:hover {
    text-decoration: underline;
}


.cookieConsentDemo {
    background: #F2F8FD;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    border-left: 4px solid #FA8747;
}

.cookieConsentDemo h4 {
    margin-bottom: 10px;
    color: #111;
}

.cookieConsentDemo > p {
    margin-bottom: 20px;
    color: #6a6a6a;
}

.consentControls {
    margin-bottom: 20px;
}

.consentItem {
    margin-bottom: 15px;
    padding: 15px;
    background: white;
    border-radius: 8px;
}

.consentLabel {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: #111;
    margin-bottom: 5px;
}

.consentLabel input {
    margin-right: 10px;
}

.consentRequired {
    color: #ff1d1d;
    font-size: 12px;
    margin-left: 5px;
}

.consentDesc {
    margin: 0;
    font-size: 14px;
    color: #6a6a6a;
    padding-left: 25px;
}

.savePreferences {
    background: #37BB7D;
}

.savePreferences:hover {
    background: #2da56c;
    transform: translateY(-2px);
}


.updateHistory {
    margin-top: 20px;
}

.historyItem {
    display: grid;
    grid-template-columns: 80px 150px 1fr;
    gap: 15px;
    padding: 15px;
    background: #F2F8FD;
    border-radius: 8px;
    margin-bottom: 10px;
    align-items: center;
}

.version {
    background: #ff1d1d;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
}

.date {
    font-weight: 600;
    color: #111;
}

.changes {
    color: #6a6a6a;
    font-size: 14px;
}


.consentLabel input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #6a6a6a;
    border-radius: 3px;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.consentLabel input[type="checkbox"]:checked + .checkmark {
    background: #37BB7D;
    border-color: #37BB7D;
}

.consentLabel input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.consentLabel input[type="checkbox"]:disabled + .checkmark {
    background: #eaeaea;
    border-color: #6a6a6a;
    cursor: not-allowed;
}


@media (max-width: 992px) {
    .usageGrid,
    .managementOptions {
        grid-template-columns: 1fr;
    }
    
    .tableHeader,
    .tableRow {
        grid-template-columns: 1fr;
    }
    
    .historyItem {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .thirdPartyItem,
    .usageItem {
        flex-direction: column;
        text-align: center;
    }
    
    .usageIcon,
    .partyLogo {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .cookieConsentDemo {
        padding: 20px;
    }
}






















































@media (max-width: 992px) {
    .heroBanner, .aboutSection {
        flex-direction: column;
    }
    
    .bannerContent{
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .whyUsGrid, .featuresGrid, .blogGrid {
        grid-template-columns: repeat(2, 1fr);
    }
    .aboutContent{
        padding-left: 30px;
    }
    
    .footerContent {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .heroBanner-block{
        flex-direction: column;
    }

    .heroBanner{
        padding-block: 50px;
    }
    .bannerImage{
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .navMenu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--block-shadow);
    }
    .aboutFlex{
        flex-direction: column;
    }
    .aboutContent{
        padding: 0;
        margin-top: 30px;
    }
    .whyUsSection{
        padding-top: 0;
    }
    .aboutImage{
        padding-right: 0;
    }
    .aboutSection{
        padding-top: 50px;
    }
    
    .navMenu.active {
        display: flex;
    }
    
    .navMenu li {
        margin: 10px 0;
    }
    
    .mobileMenuBtn {
        display: block;
    }
    
    .whyUsGrid, .featuresGrid, .blogGrid {
        grid-template-columns: 1fr;
    }
    
    .footerContent {
        grid-template-columns: 1fr;
    }
    
    .bannerTitle {
        font-size: 36px;
    }
}