/* Base Styles */
:root {
    --primary-color: #22C55E;
    --primary-dark: #16A34A;
    --secondary-color: #2563EB;
    --dark-color: #1F2937;
    --light-color: #F9FAFB;
    --text-color: #1F2937;
    --text-light: #4B5563;
    --border-color: #D1D5DB;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none !important;
}

/* Maintain accessibility for keyboard navigation */
*:focus-visible,
*:focus,
*:active,
*:focus-within,
*:hover,
*:visited,
*:link,
*:any-link {
    outline: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

/* For WebKit browsers */
*::-webkit-focus-inner {
    border: 0 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

/* For Firefox */
*::-moz-focus-inner {
    border: 0 !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
}

/* For IE10+ */
*::-ms-focus-last {
    border: 0 !important;
    -ms-box-shadow: none !important;
    box-shadow: none !important;
}

/* Chat buttons */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #fff;
}

/* Default footer link spacing */
.footer-links li {
    margin-bottom: 12px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

* {
    max-width: 100%;
}

/* Chat buttons */
.chat-button,
.chat-widget-button {
    position: fixed;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    border: none;
    outline: none !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background-color: #10b981;
    color: white;
}

/* Position the WhatsApp button */
.chat-button {
    bottom: 90px;
}

/* Position the chat widget button */
.chat-widget-button {
    bottom: 20px;
}

.chat-button:hover,
.chat-widget-button:hover {
    background-color: #0d9f6e;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.chat-button:active,
.chat-widget-button:active {
    transform: translateY(0);
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    border: none;
    outline: none !important;
    transition: all 0.3s ease;
}

.scroll-to-top:hover {
    background-color: #0d9f6e;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.scroll-to-top:active {
    transform: translateY(0);
}

/* Remove outline from all buttons and links */
button,
a,
input,
textarea,
select,
div,
span {
    outline: none !important;
    box-shadow: none !important;
}

/* Specific fix for the green button outline */
.btn,
.btn:focus,
.btn:active,
.btn:hover,
button,
button:focus,
button:active,
button:hover,
[role="button"],
[role="button"]:focus,
[role="button"]:active,
[role="button"]:hover {
    outline: none !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

/* Remove focus ring for all elements */
*:focus,
*:focus-visible,
*:focus-within {
    outline: none !important;
    box-shadow: none !important;
    -webkit-focus-ring-color: transparent !important;
}

/* Specific fix for focus-visible in WebKit/Blink */
:focus:not(:focus-visible) {
    outline: none !important;
    box-shadow: none !important;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-lg {
    padding: 12px 32px;
    font-size: 1.1rem;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.text-center {
    text-align: center;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 10px 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles */
.logo img {
    height: 45px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #1F2937;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger animation */
.mobile-menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Main Navigation */
.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 24px;
}

.main-nav>ul>li {
    margin: 0;
    padding: 8px 0;
}

.main-nav a {
    color: #374151;
    /* Darker gray for better visibility */
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    /* Slightly larger font */
    transition: color 0.2s ease;
    position: relative;
}

.main-nav>ul>li:not(.cta):not(.login)>a:hover {
    color: #10B981;
    /* Primary color on hover */
}

.main-nav>ul>li>a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background-color: #10B981;
    transition: width 0.3s ease;
}

.main-nav>ul>li:hover>a::after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.5;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: #10B981;
    color: white;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: #059669;
    transform: translateY(-1px);
}

/* Login Link */
.login a {
    color: #374151 !important;
    font-weight: 600;
    /* Bolder */
    transition: color 0.2s ease;
}

.login a:hover {
    color: #10B981 !important;
}

/* Active State */
.main-nav>ul>li.active>a {
    color: #111827;
    font-weight: 600;
}

.main-nav>ul>li.active>a::after {
    width: 100%;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        /* Slightly wider */
        height: 100vh;
        background: white;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        padding: 80px 20px 40px;
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    /* Show menu when active */
    body.menu-open .main-nav,
    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .main-nav>ul>li {
        width: 100%;
        margin: 0;
        padding: 0;
        border-bottom: 1px solid #F3F4F6;
    }

    .main-nav>ul>li:last-child {
        border-bottom: none;
    }

    .main-nav a {
        display: block;
        padding: 16px 0;
        font-size: 18px;
        font-weight: 600;
        color: #111827;
        border-bottom: 1px solid #F3F4F6;
    }

    .main-nav>ul>li>a::after {
        display: none;
    }

    .cta,
    .login {
        margin-top: 20px;
        width: 100%;
    }

    .btn {
        width: 100%;
        padding: 14px;
        font-size: 16px;
    }
}

/* Hero Section */
/* Hero Section */
.hero {
    padding: 180px 0 100px;
    /* Reduced top padding slightly but kept spacious */
    background: radial-gradient(circle at top right, rgba(16, 185, 129, 0.05) 0%, rgba(255, 255, 255, 1) 60%);
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.hero::after,
.hero::before {
    display: none !important;
    content: none !important;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 20;
}

.hero-content {
    flex: 1;
    position: relative;
    z-index: 30;
    /* Ensure content is above any potential background/overlay */
}

.hero h1 {
    font-size: 4rem;
    /* Larger font size */
    font-weight: 800;
    /* Extra bold */
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--dark-color);
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.35rem;
    /* Larger subtitle */
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 650px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 16px;
    position: relative;
    z-index: 999;
    /* Force buttons to be on top */
}

/* Force hero button visibility */
.hero-cta .btn-primary {
    background-color: #10B981 !important;
    color: #ffffff !important;
    border: 1px solid #10B981 !important;
    opacity: 1 !important;
}

.hero-cta .btn-primary:hover {
    background-color: #059669 !important;
    border-color: #059669 !important;
}

.hero-cta .btn-outline {
    background-color: transparent !important;
    color: #10B981 !important;
    border: 2px solid #10B981 !important;
    opacity: 1 !important;
}

.hero-cta .btn-outline:hover {
    background-color: #10B981 !important;
    color: #ffffff !important;
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-image {
    flex: 1;
    position: relative;
    animation: float 6s ease-in-out infinite;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.2s forwards, float 6s ease-in-out 1s infinite;
    /* Delayed entrance */
}

/* Hero Image Slider */
.slider-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    /* More rounded */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    /* Soft shadow */
}

.slider {
    position: relative;
    width: 100%;
    height: 480px;
    /* Slightly taller */
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    gap: 15px;
}

.slider-prev,
.slider-next {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    color: #1f2937;
}

.slider-prev:hover,
.slider-next:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: #ffffff;
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .slider {
        height: 350px;
    }

    .slider-nav {
        bottom: 10px;
    }

    .slider-prev,
    .slider-next {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .slider {
        height: 250px;
    }

    .feature-card p,
    .benefit-card p,
    .why-choose-us p {
        font-size: 1rem !important;
        color: #1F2937 !important;
        font-weight: 450;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Trusted By Section */
.trusted-by {
    padding: 60px 0;
    background-color: white;
    text-align: center;
}

/* Features Section */
.features {
    padding: 120px 0;
    /* Increased from 100px */
    background-color: #F9FAFB;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    /* Increased from 30px */
    margin-top: 60px;
    /* Increased from 40px */
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA Section */
.cta {
    padding: 120px 0;
    /* Increased from 100px */
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

/* Features Section (Page) */
.features-section {
    padding: 120px 0;
    /* Increased from 80px */
}

.feature-highlights {
    padding: 120px 0;
    /* Increased from 80px */
    background-color: #F9FAFB;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    /* Increased from 30px */
    margin-top: 60px;
}

@media (max-width: 992px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .highlights-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    /* Increased from 80px */
}

/* Pricing Section */
.pricing-section {
    padding: 120px 0;
    /* Increased from 80px */
    background-color: #F9FAFB;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    /* Adjusted gap for 4 columns */
    margin: 50px auto 0;
    max-width: 1400px;
    padding: 0 20px;
    align-items: stretch;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    /* Increased from 100px */
    background-color: #ffffff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    /* Increased padding around cards */
    margin-top: 60px;
}

@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

.benefit-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    /* Increased internal padding */
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

/* Metrics Section */
.metrics-section {
    padding: 60px 0;
    /* Reduced from 120px */
    background-color: #ffffff;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    /* Increased gap */
    margin-top: 60px;
}

/* Why Choose Us */
.why-choose-us {
    padding: 60px 0;
    /* Reduced from 120px */
    background: #ffffff;
    color: #1a202c;
}

/* Key Features Section */
.key-features {
    padding: 80px 0;
    /* Standardized */
    background-color: #f8fafc;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-card .icon {
    width: 80px;
    height: 80px;
    background-color: #DCFCE7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--primary-color);
    font-size: 32px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.learn-more {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.learn-more:hover {
    gap: 8px;
}

/* CTA Section Removed (Duplicate) */

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 70px 0 0;
    font-family: 'Inter', sans-serif;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-about {
    grid-column: span 1;
}

@media (max-width: 992px) {
    .footer-about {
        grid-column: span 1;
    }
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-about p {
    color: #b0b0b0;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 15px;
}

.footer-contact {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-contact h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #3B82F6;
}

.footer-contact p {
    color: #b0b0b0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-size: 15px;
}

.footer-contact i {
    color: #3B82F6;
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.footer-contact a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: #3B82F6;
    text-decoration: none;
    font-size: 15px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #2d2d2d;
    color: #ffffff;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-links a:hover {
    background-color: #22C55E;
    transform: translateY(-3px);
}

.footer-links {
    min-width: 0;
    width: 100%;
    margin-bottom: 20px;
}

.footer-links ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.footer-links ul li {
    margin: 0;
    list-style: none;
    min-width: 120px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .footer-links {
        width: 50%;
        padding: 0 10px;
        margin-bottom: 30px;
    }

    .footer-links ul {
        max-height: none;
    }
}

@media (max-width: 480px) {
    .footer-links {
        width: 100%;
        padding: 0;
    }
}

.footer-links ul li a {
    color: #b0b0b0;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 14px;
    line-height: 1.5;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.footer-links ul li a:hover {
    color: #22C55E;
    padding-left: 5px;
}

.footer-newsletter {
    max-width: 300px;
}

.footer-newsletter h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-newsletter h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #22C55E;
}

.footer-newsletter p {
    color: #b0b0b0;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 15px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #3a3a3a;
    background-color: #2d2d2d;
    border-radius: 4px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #22C55E;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
}

.newsletter-form .btn {
    width: 100%;
    padding: 12px 15px;
    background-color: #22C55E;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.newsletter-form .btn:hover {
    background-color: #1ea84c;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #2d2d2d;
    padding: 25px 0;
    background-color: #1a1a1a;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-bottom p {
    color: #b0b0b0;
    font-size: 14px;
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-legal a {
    color: #b0b0b0;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: #22C55E;
}

.footer-legal span {
    color: #4d4d4d;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }

    .footer-about {
        grid-column: span 2;
        max-width: 100%;
    }
}

@media (max-width: 768px) {

    /* Prevent horizontal scroll */
    html,
    body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }

    .container {
        max-width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .footer-content {
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-auto-flow: row !important;
        gap: 40px !important;
    }

    /* Show footer logo on mobile */
    .footer-about img,
    .footer-logo img {
        display: block !important;
        max-width: 140px;
        margin-bottom: 20px;
    }

    /* EXTREME footer link spacing - FINAL FIX */
    .footer-links {
        margin-bottom: 40px !important;
        grid-column: 1 / -1 !important;
        width: 100% !important;
    }

    .footer-links ul {
        padding: 0 !important;
        margin: 0 !important;
    }

    .footer-links li {
        margin-bottom: 15px !important;
        line-height: 1.6 !important;
        clear: both !important;
        display: block !important;
    }

    .footer-links a {
        display: block !important;
        padding: 5px 0 !important;
        line-height: 1.6 !important;
        font-size: 1rem !important;
        min-height: auto !important;
    }

    .footer-links h3 {
        margin-bottom: 20px !important;
        font-size: 1.2rem !important;
    }

    .footer-about {
        grid-column: 1 / -1 !important;
        margin-bottom: 40px !important;
        width: 100% !important;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: white;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 100px 30px 40px;
        transition: var(--transition);
        z-index: 1000;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .main-nav .btn {
        margin: 20px 0 0;
        display: block;
        width: 100%;
        text-align: center;
    }

    /* Hero Section Mobile Fixes */
    .hero {
        padding: 100px 0 40px;
        text-align: center;
    }

    .hero .container {
        flex-direction: column;
        gap: 30px;
    }

    .hero-content {
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
        text-align: center;
    }

    .hero p {
        font-size: 1.1rem;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Ensure slider shows on mobile */
    .hero-image,
    .slider-container {
        display: block !important;
        width: 100%;
        max-width: 100%;
    }

    .slider {
        height: 300px;
        border-radius: 12px;
    }

    /* Fix WhatsApp button position on mobile */
    .whatsapp-float {
        bottom: 20px !important;
        right: 15px !important;
        width: 56px !important;
        height: 56px !important;
        font-size: 28px !important;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Page Header */
.page-header {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    text-align: center;
    border-bottom: 2px solid #f1f5f9;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.page-header p {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Features Section padding removed (handled by .features-section rule above) */

.features-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 20px;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.tab-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card .icon {
    width: 70px;
    height: 70px;
    background-color: #DCFCE7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary-color);
    font-size: 28px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.feature-list {
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.feature-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: var(--text-light);
}

.feature-list i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 0.9rem;
}

.learn-more {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: auto;
    padding-top: 10px;
}

.learn-more:hover {
    gap: 8px;
}

/* Feature Highlights */
.feature-highlights {
    padding: 80px 0;
    background-color: #F9FAFB;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.highlight-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    background-color: #DCFCE7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 32px;
}

.highlight-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.highlight-card p {
    color: var(--text-light);
    margin: 0;
}

/* FAQ Section padding removed (Duplicate) */

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: #F9FAFB;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--dark-color);
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background-color: white;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.7;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .page-header {
        padding: 100px 0 50px;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .features-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .tab-btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* Pricing Section padding removed (Duplicate) */

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    font-weight: 500;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #E5E7EB;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: var(--primary-color);
}

input:focus+.slider {
    box-shadow: 0 0 1px var(--primary-color);
}

input:checked+.slider:before {
    transform: translateX(30px);
}

.discount-badge {
    background-color: #FEE2E2;
    color: #DC2626;
    font-size: 0.8rem;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 5px;
}



.pricing-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: -35px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
    width: 150px;
    text-align: center;
}

.pricing-header {
    padding: 40px 30px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.pricing-header p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.price {
    margin: 25px 0;
    position: relative;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
    line-height: 3;
    margin-right: 5px;
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1;
}

.annual-price {
    display: none;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1;
}

.annual-price span {
    font-size: 1rem;
    font-weight: normal;
    color: var(--text-light);
}

.period {
    font-size: 1rem;
    color: var(--text-light);
    margin-left: 5px;
}

.billed-annually {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 10px;
    display: none;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.pricing-features {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pricing-features h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.pricing-features li i {
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
}

.pricing-features li.not-included {
    color: #D1D5DB;
    text-decoration: line-through;
}

.pricing-features li.not-included i {
    color: #D1D5DB;
}

/* Custom Plan */
.custom-plan {
    margin-top: 60px;
    background: white;
    border-radius: 12px;
    padding: 50px;
    text-align: center;
    box-shadow: var(--shadow);
}

.custom-plan h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.custom-plan p {
    max-width: 700px;
    margin: 0 auto 25px;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Comparison Table */
.comparison-section {
    padding: 80px 0;
    background-color: white;
}

.comparison-table-container {
    overflow-x: auto;
    margin-top: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.comparison-table th,
.comparison-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background-color: #F9FAFB;
    font-weight: 600;
    color: var(--dark-color);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.comparison-table td {
    color: var(--text-light);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background-color: #F9FAFB;
}

.comparison-table i.fa-check {
    color: #10B981;
}

.comparison-table i.fa-times {
    color: #EF4444;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: #F9FAFB;
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.testimonial-content {
    position: relative;
}

.quote-icon {
    font-size: 5rem;
    color: #E5E7EB;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 1;
}

.testimonial-content p {
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.testimonial-author h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.testimonial-author p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card {
        margin-bottom: 30px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .custom-plan {
        padding: 30px 20px;
    }

    .testimonial-slider {
        grid-template-columns: 1fr;
    }
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-form-container {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.contact-form-container p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
}

.form-group .required {
    color: #EF4444;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-group-checkbox input[type="checkbox"] {
    margin-top: 4px;
}

.form-group-checkbox label {
    margin-bottom: 0;
    font-weight: normal;
    line-height: 1.5;
}

.form-group-checkbox a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.form-group-checkbox a:hover {
    text-decoration: underline;
}

.error-message {
    color: #EF4444;
    font-size: 0.85rem;
    margin-top: 5px;
    min-height: 20px;
}

input.error,
select.error,
textarea.error {
    border-color: #EF4444 !important;
}

.form-success {
    display: none;
    align-items: center;
    background-color: #ECFDF5;
    color: #065F46;
    padding: 15px 20px;
    border-radius: 6px;
    margin-top: 20px;
}

.form-success i {
    font-size: 1.5rem;
    margin-right: 15px;
}

/* Contact Information */
.contact-info {
    position: relative;
}

.contact-info-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: #ECFDF5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-method h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.contact-method p,
.contact-method a {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-method a {
    display: block;
    text-decoration: none;
    transition: var(--transition);
}

.contact-method a:hover {
    color: var(--primary-color);
}

.social-links h4 {
    margin: 30px 0 15px;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #F3F4F6;
    color: var(--text-color);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Map Section */
.map-section {
    height: 400px;
    width: 100%;
    position: relative;
}

#map {
    height: 100%;
    width: 100%;
    border: none;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #F0FDF4 0%, #ECFDF5 100%);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    margin-top: 60px;
}

.cta-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.cta-box p {
    color: var(--text-light);
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-card {
        position: static;
    }
}

@media (max-width: 768px) {

    .contact-form-container,
    .contact-info-card {
        padding: 30px;
    }

    .contact-method {
        flex-direction: column;
    }

    .contact-icon {
        margin-bottom: 15px;
    }

    .cta-box {
        padding: 30px 20px;
    }

    .cta-box h3 {
        font-size: 1.5rem;
    }
}

/* About Page Styles */
.about-hero {
    padding: 80px 0;
    background-color: #fff;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    line-height: 1.3;
}

.about-hero-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.about-hero-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.about-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.experience-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.experience-badge .years {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-badge .label {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #F9FAFB;
    border-radius: 8px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-family: 'Inter', sans-serif;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background-color: #F9FAFB;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: #ECFDF5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: #fff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.member-image {
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.team-member .social-links {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.9);
    transition: bottom 0.3s ease;
}

.team-member:hover .social-links {
    bottom: 0;
}

.team-member .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    margin: 0 5px;
    transition: var(--transition);
}

.team-member .social-links a:hover {
    background: var(--dark-color);
    transform: translateY(-3px);
}

.member-info {
    padding: 25px 20px;
    text-align: center;
}

.member-info h3 {
    margin: 0 0 5px;
    font-size: 1.3rem;
    color: var(--dark-color);
}

.member-info .position {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.member-info .bio {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Journey Section */
.journey-section {
    padding: 80px 0;
    background-color: #F9FAFB;
    position: relative;
    overflow: hidden;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
}

.timeline-item {
    padding: 20px 0;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    clear: both;
}

.timeline-item:nth-child(odd) {
    float: left;
    padding-right: 50px;
    text-align: right;
}

.timeline-item:nth-child(even) {
    float: right;
    padding-left: 50px;
    text-align: left;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: 30px;
    right: -10px;
    z-index: 1;
    border: 4px solid #F9FAFB;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
    right: auto;
}

.timeline-content {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    position: relative;
    transition: var(--transition);
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.timeline-year {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-content h3 {
    margin: 0 0 10px;
    font-size: 1.3rem;
    color: var(--dark-color);
}

.timeline-content p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: #fff;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.quote-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--primary-color);
}

.testimonial-author h4 {
    margin: 0 0 5px;
    font-size: 1.1rem;
    color: var(--dark-color);
}

/* Slider Styles */
.slider {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    height: 400px;
    /* Fixed height for the slider */
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    position: relative;
}

.slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    background: #f5f5f5;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.slider-prev {
    left: 15px;
}

.slider-next {
    right: 15px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

.testimonial-author p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .about-hero-grid {
        gap: 40px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-hero-content {
        order: 2;
    }

    .about-hero-image {
        max-width: 600px;
        margin: 0 auto;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 80px;
        padding-right: 0;
        text-align: left;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        float: none;
        padding-left: 80px;
        padding-right: 0;
        text-align: left;
    }

    .timeline-dot {
        left: 20px !important;
        right: auto !important;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .about-hero-content h2 {
        font-size: 2rem;
    }

    .experience-badge {
        padding: 10px 15px;
    }

    .experience-badge .years {
        font-size: 1.5rem;
    }

    .experience-badge .label {
        font-size: 0.8rem;
    }

    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 50px;
    }

    .timeline-dot {
        left: 10px !important;
        width: 16px;
        height: 16px;
    }

    /* Blog Page Styles */
    .blog-section {
        padding: 80px 0;
        background-color: #fff;
    }

    .blog-grid {
        display: grid;
        grid-template-columns: 1fr 300px;
        gap: 40px;
        margin-top: 30px;
    }

    /* Blog Main Content */
    .blog-main {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    /* Featured Post */
    .blog-post.featured {
        display: grid;
        grid-template-columns: 1fr 1fr;
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        transition: var(--transition);
    }

    .blog-post.featured:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    }

    .blog-post.featured .post-image {
        position: relative;
        min-height: 100%;
    }

    .blog-post.featured .post-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .blog-post.featured .post-content {
        padding: 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .blog-post.featured .category-tag {
        position: absolute;
        top: 15px;
        right: 15px;
        background: var(--primary-color);
        color: white;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* Regular Blog Posts Grid */
    .posts-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .blog-post {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        transition: var(--transition);
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .blog-post.animate {
        opacity: 1;
        transform: translateY(0);
    }

    .blog-post:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    }

    .blog-post .post-image {
        position: relative;
        height: 200px;
        overflow: hidden;
    }

    .blog-post .post-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .blog-post:hover .post-image img {
        transform: scale(1.05);
    }

    .blog-post .category-tag {
        position: absolute;
        top: 15px;
        right: 15px;
        background: var(--primary-color);
        color: white;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 0.7rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .blog-post .post-content {
        padding: 20px;
    }

    .blog-post .post-meta {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 10px;
        font-size: 0.85rem;
        color: var(--text-light);
    }

    .blog-post .post-meta i {
        margin-right: 5px;
        color: var(--primary-color);
    }

    .blog-post .post-meta a {
        color: var(--text-light);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .blog-post .post-meta a:hover {
        color: var(--primary-color);
    }

    .blog-post h2,
    .blog-post h3 {
        margin: 0 0 15px;
        font-size: 1.4rem;
        line-height: 1.4;
    }

    .blog-post.featured h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .blog-post h2 a,
    .blog-post h3 a {
        color: var(--dark-color);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .blog-post h2 a:hover,
    .blog-post h3 a:hover {
        color: var(--primary-color);
    }

    .blog-post .post-excerpt {
        color: var(--text-light);
        margin-bottom: 20px;
        line-height: 1.7;
    }

    .read-more {
        display: inline-flex;
        align-items: center;
        color: var(--primary-color);
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .read-more i {
        margin-left: 5px;
        transition: transform 0.3s ease;
    }

    .read-more:hover {
        color: var(--dark-color);
    }

    .read-more:hover i {
        transform: translateX(5px);
    }

    /* Pagination */
    .pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin-top: 30px;
    }

    .page-numbers,
    .next-page {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 8px;
        background: #fff;
        color: var(--text-color);
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        border: 1px solid #e5e7eb;
    }

    .next-page {
        width: auto;
        padding: 0 15px;
    }

    .page-numbers.current,
    .page-numbers:hover,
    .next-page:hover {
        background: var(--primary-color);
        color: white;
        border-color: var(--primary-color);
    }

    .next-page i {
        margin-left: 5px;
    }

    /* Blog Sidebar */
    .blog-sidebar {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .sidebar-widget {
        background: #fff;
        border-radius: 12px;
        padding: 25px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    }

    .widget-title {
        font-size: 1.3rem;
        margin: 0 0 20px;
        padding-bottom: 15px;
        border-bottom: 1px solid #e5e7eb;
        color: var(--dark-color);
    }

    /* Search Widget */
    .search-form {
        position: relative;
    }

    .search-form input {
        width: 100%;
        padding: 12px 50px 12px 15px;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        font-size: 0.95rem;
        transition: var(--transition);
    }

    .search-form input:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
    }

    .search-form button {
        position: absolute;
        top: 0;
        right: 0;
        width: 46px;
        height: 100%;
        background: transparent;
        border: none;
        color: var(--text-light);
        cursor: pointer;
        transition: color 0.3s ease;
    }

    .search-form button:hover {
        color: var(--primary-color);
    }

    /* Categories Widget */
    .categories-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .categories-list li {
        border-bottom: 1px dashed #e5e7eb;
        padding: 10px 0;
    }

    .categories-list li:last-child {
        border-bottom: none;
    }

    .categories-list a {
        display: flex;
        justify-content: space-between;
        color: var(--text-color);
        text-decoration: none;
        transition: color 0.3s ease, padding-left 0.3s ease;
        padding: 5px 0;
    }

    .categories-list a:hover {
        color: var(--primary-color);
        padding-left: 10px;
    }

    .categories-list a span {
        background: #f3f4f6;
        padding: 2px 8px;
        border-radius: 20px;
        font-size: 0.8rem;
        transition: all 0.3s ease;
    }

    .categories-list a:hover span {
        background: var(--primary-color);
        color: white;
    }

    /* Popular Posts Widget */
    .popular-posts {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .popular-post {
        display: flex;
        gap: 15px;
        padding-bottom: 20px;
        border-bottom: 1px dashed #e5e7eb;
    }

    .popular-post:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .popular-post .post-thumbnail {
        flex: 0 0 80px;
        height: 80px;
        border-radius: 8px;
        overflow: hidden;
    }

    .popular-post .post-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .popular-post:hover .post-thumbnail img {
        transform: scale(1.05);
    }

    .popular-post .post-info {
        flex: 1;
    }

    .popular-post h4 {
        margin: 0 0 5px;
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .popular-post h4 a {
        color: var(--dark-color);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .popular-post h4 a:hover {
        color: var(--primary-color);
    }

    .popular-post .post-date {
        font-size: 0.8rem;
        color: var(--text-light);
    }

    /* Tags Widget */
    .tags-list {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .tags-list a {
        display: inline-block;
        padding: 5px 15px;
        background: #f3f4f6;
        color: var(--text-color);
        text-decoration: none;
        border-radius: 20px;
        font-size: 0.85rem;
        transition: all 0.3s ease;
    }

    .tags-list a:hover {
        background: var(--primary-color);
        color: white;
        transform: translateY(-2px);
    }

    /* CTA Widget */
    .cta-widget {
        background: linear-gradient(135deg, var(--primary-color), #16a34a);
        color: white;
        text-align: center;
        padding: 30px 25px !important;
    }

    .cta-widget h3 {
        color: white;
        margin: 0 0 15px;
        font-size: 1.4rem;
    }

    .cta-widget p {
        margin: 0 0 20px;
        opacity: 0.9;
        line-height: 1.6;
    }

    .cta-widget .btn {
        background: white;
        color: var(--primary-color);
        border: none;
        font-weight: 600;
    }

    .cta-widget .btn:hover {
        background: rgba(255, 255, 255, 0.9);
        transform: translateY(-2px);
    }

    /* Newsletter Section */
    .newsletter-section {
        padding: 60px 0;
        background-color: #f9fafb;
    }

    .newsletter-box {
        max-width: 800px;
        margin: 0 auto;
        background: white;
        border-radius: 12px;
        padding: 40px;
        text-align: center;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    }

    .newsletter-content h3 {
        margin: 0 0 10px;
        font-size: 1.8rem;
        color: var(--dark-color);
    }

    .newsletter-content p {
        color: var(--text-light);
        margin: 0 0 25px;
        font-size: 1.1rem;
    }

    .newsletter-form {
        display: flex;
        max-width: 500px;
        margin: 0 auto;
        gap: 10px;
    }

    .newsletter-form input {
        flex: 1;
        padding: 12px 20px;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        font-size: 1rem;
        transition: var(--transition);
    }

    .newsletter-form input:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
    }

    .newsletter-form .btn {
        padding: 12px 25px;
        border: none;
        font-weight: 600;
        white-space: nowrap;
    }

    /* Responsive Styles */
    @media (max-width: 1200px) {
        .blog-grid {
            grid-template-columns: 1fr 280px;
        }
    }

    @media (max-width: 992px) {
        .blog-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .blog-sidebar {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .cta-widget {
            grid-column: 1 / -1;
        }
    }

    @media (max-width: 768px) {
        .blog-post.featured {
            grid-template-columns: 1fr;
        }

        .posts-grid {
            grid-template-columns: 1fr;
        }

        .blog-sidebar {
            grid-template-columns: 1fr;
        }

        .newsletter-box {
            padding: 30px 20px;
        }

        .newsletter-form {
            flex-direction: column;
        }

        .newsletter-form .btn {
            width: 100%;
        }
    }

    @media (max-width: 576px) {
        .blog-post.featured h2 {
            font-size: 1.5rem;
        }

        .blog-post h3 {
            font-size: 1.2rem;
        }

        .pagination {
            flex-wrap: wrap;
        }

        .newsletter-content h3 {
            font-size: 1.5rem;
        }

        .newsletter-content p {
            font-size: 1rem;
        }
    }

    /* Animation */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .animate-fadeInUp {
        animation: fadeInUp 0.8s ease-out forwards;
    }
}