.elementor-kit-8{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-8 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1500px;}.e-con{--container-max-width:1500px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* =========================================
   GLOBAL CSS
   (This code goes into 'Appearance > Customize > Additional CSS')
   ========================================= */

/* Universal styles for buttons */
.cta-button {
    display: inline-block;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background-color: #FF5A5F; /* Main brand color */
    color: #ffffff;
    border: 2px solid #FF5A5F;
}

.cta-button.primary:hover {
    background-color: #e54b50;
    border-color: #e54b50;
}

.cta-button.secondary {
    background-color: transparent;
    color: #333333;
    border: 2px solid transparent;
}

.cta-button.secondary:hover {
    color: #FF5A5F;
}


/* =========================================
   PAGE-SPECIFIC CSS
   (This code goes into the dedicated CSS box for the specific page it was created for)
   ========================================= */

/* Hero Section Layout */
.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 5%; /* Adjust padding for spacing */
    min-height: 80vh;
    box-sizing: border-box;
}

.hero-content {
    flex: 1;
    max-width: 50%;
    text-align: left;
}

.hero-visuals {
    flex: 1;
    max-width: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Text and Typography */
.eyebrow {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #FF5A5F;
    margin-bottom: 10px;
}

.hero-headline {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 20px 0;
    color: #2D3748;
}

.hero-headline .highlight {
    color: #FF5A5F;
}

.hero-subheadline {
    font-size: 18px;
    line-height: 1.6;
    color: #4A5568;
    margin-bottom: 30px;
}

/* CTA Buttons */
.hero-cta-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 40px;
}

/* Trust Bar */
.hero-trust-bar {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.hero-trust-bar span {
    font-size: 14px;
    color: #718096;
    font-weight: 500;
}

.hero-trust-bar .logo-container {
    display: flex;
    gap: 25px;
}

.hero-trust-bar .logo {
    max-height: 30px;
    opacity: 0.6;
}

/* Visuals and Stats Cards */
.hero-visuals .main-visual img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.stats-card {
    position: absolute;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-align: center;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.blog-traffic {
    top: 20%;
    left: 10%;
}

.seo-analytics {
    bottom: 20%;
    right: 15%;
}

.stat-label {
    font-size: 14px;
    color: #718096;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: #2D3748;
}

.stat-unit {
    font-size: 12px;
    color: #A0AEC0;
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 60px 5%;
    }

    .hero-content {
        max-width: 100%;
    }
    
    .hero-headline {
        font-size: 40px;
    }
    
    .hero-visuals {
        max-width: 100%;
        margin-top: 40px;
    }

    .hero-cta-buttons {
        justify-content: center;
    }
    
    .hero-trust-bar {
        align-items: center;
    }
    
    .stats-card {
        display: none; /* Hide stats cards on smaller screens to avoid clutter */
    }
}/* End custom CSS */