
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: url(../images/bgc.jpg)no-repeat center center;
    background-size: cover;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.4);
}

.hero-stats {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #28a745;
    display: block;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e3c72;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(45deg, #28a745, #20c997);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #1e3c72, #2a5298);
    border-radius: 50%;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e3c72;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: white;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.benefits-text h2 {
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 2rem;
    font-weight: 700;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: #e9ecef;
    transform: translateX(10px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #28a745, #20c997);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    color: white;
    font-size: 1.5rem;
}

.benefit-text h4 {
    color: #1e3c72;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.benefit-text p {
    color: #666;
    font-size: 0.95rem;
}

.benefits-image {
    text-align: center;
    position: relative;
}

.chart-container {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    padding: 3rem;
    border-radius: 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

.chart-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.mock-chart {
    position: relative;
    z-index: 2;
}

.chart-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.chart-bars {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 150px;
    margin-bottom: 1rem;
}

.chart-bar {
    width: 40px;
    background: linear-gradient(to top, #28a745, #20c997);
    border-radius: 5px 5px 0 0;
    position: relative;
    animation: growBar 2s ease-out;
}

.chart-bar:nth-child(1) { height: 60%; }
.chart-bar:nth-child(2) { height: 80%; }
.chart-bar:nth-child(3) { height: 100%; }
.chart-bar:nth-child(4) { height: 75%; }
.chart-bar:nth-child(5) { height: 90%; }

.chart-label {
    font-size: 0.9rem;
    text-align: center;
    margin-top: 1rem;
    opacity: 0.8;
}

/* CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    text-align: center;
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.05)"/><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="30" r="1.5" fill="rgba(255,255,255,0.05)"/><circle cx="30" cy="80" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="70" cy="70" r="2" fill="rgba(255,255,255,0.05)"/></svg>');
}

.final-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-secondary {
    background: transparent;
    border: 2px solid #28a745;
    color: #28a745;
    padding: 16px 35px;
}

.cta-secondary:hover {
    background: #28a745;
    color: white;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes growBar {
    from {
        height: 0;
    }
    to {
        height: var(--bar-height);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll-triggered animations */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
}

.slide-up.visible {
    animation: slideInUp 0.8s ease-out forwards;
}

.fade-in-left.visible {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.fade-in-right.visible {
    animation: fadeInRight 0.8s ease-out forwards;
}

.fade-in-scale.visible {
    animation: fadeInScale 0.8s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .benefits-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .final-cta h2 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
        padding: 0 1rem;
    }

    /* Testimonials mobile optimization */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    /* Success stories mobile optimization */
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-card {
        padding: 1.5rem;
    }

    .story-metric {
        font-size: 2.5rem;
    }

    .story-description {
        font-size: 1rem;
    }

    /* FAQ mobile optimization */
    .faq-question {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .faq-answer.active {
        padding: 1rem 1.5rem;
        max-height: 300px;
    }

    /* Features grid mobile optimization */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    /* Floating elements less intrusive on mobile */
    .floating-element {
        opacity: 0.3;
    }

    /* Hero stats mobile layout */
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 2rem;
    }

    .stat-item {
        padding: 0.8rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Chart container mobile optimization */
    .chart-container {
        padding: 2rem 1.5rem;
    }

    /* Button adjustments for mobile */
    .cta-button {
        padding: 16px 30px;
        font-size: 1.1rem;
    }

    /* Container padding adjustment */
    .container {
        padding: 0 15px;
    }

    /* Section padding adjustment */
    .features, .benefits, .testimonials, .success-stories, .faq, .final-cta {
        padding: 60px 0;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .final-cta h2 {
        font-size: 2rem;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .fixed-cta-button {
        bottom: 15px;
        padding: 14px 20px;
        font-size: 0.9rem;
        border-radius: 35px;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
        max-width: calc(100vw - 30px);
        box-sizing: border-box;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Floating elements */
.floating-element {
    position: absolute;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 5%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Fixed Floating Button */
.fixed-cta-button {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    padding: 18px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    display: inline-block;
    text-align: center;
    margin: 0;
}

.fixed-cta-button:hover {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.6);
    animation: none;
}

.fixed-cta-button:active {
    transform: translateX(-50%) scale(0.95);
}

/* Mobile optimization for fixed button */
@media (max-width: 768px) {
    .fixed-cta-button {
        bottom: 20px;
        padding: 16px 25px;
        font-size: 1rem;
        border-radius: 40px;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
        max-width: calc(100vw - 40px);
        box-sizing: border-box;
    }
    
    .fixed-cta-button:hover {
        transform: translateX(-50%) scale(1.05);
    }
    
    .fixed-cta-button:active {
        transform: translateX(-50%) scale(0.95);
    }
}

/* Hide fixed button when near CTA sections to avoid overlap */
.hero.in-view ~ .fixed-cta-button,
.final-cta.in-view ~ .fixed-cta-button {
    opacity: 0;
    pointer-events: none;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #28a745;
    font-family: serif;
    opacity: 0.3;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #1e3c72, #2a5298);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.author-info h5 {
    margin: 0;
    color: #1e3c72;
    font-weight: 600;
}

.author-info p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.stars {
    color: #ffc107;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

/* Success Stories Section */
.success-stories {
    padding: 100px 0;
    background: white;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.story-card {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.story-card:hover {
    background: #e9ecef;
    transform: translateY(-5px);
}

.story-metric {
    font-size: 3rem;
    font-weight: 700;
    color: #28a745;
    display: block;
    margin-bottom: 1rem;
}

.story-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: #f8f9fa;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.faq-question {
    padding: 1.5rem 2rem;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e3c72;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #28a745;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.faq-answer.active {
    padding: 1.5rem 2rem;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Image-Text Layout Sections */
.image-text-section {
    padding: 100px 0;
}

.image-text-section:nth-of-type(odd) {
    background: white;
}

.image-text-section:nth-of-type(even) {
    background: #f8f9fa;
}

.image-text-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.image-text-content.reverse {
    direction: rtl;
}

.image-text-content.reverse > * {
    direction: ltr;
}

.text-content {
    padding: 2rem 0;
}

.text-content h2 {
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.text-content p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.text-content .highlight {
    color: #28a745;
    font-weight: 600;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #555;
}

.feature-list li::before {
    content: '✓';
    color: #28a745;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 1rem;
    width: 20px;
    text-align: center;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.image-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}

.mock-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.mock-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="chart-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><rect width="2" height="20" fill="rgba(255,255,255,0.1)"/><rect width="20" height="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23chart-pattern)"/></svg>');
    opacity: 0.3;
}

.mock-image .icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.mock-image .text {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Chart visualization inside mock image */
.chart-visualization {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    height: 60px;
    display: flex;
    align-items: flex-end;
    gap: 5px;
}

.chart-bar-small {
    background: rgba(40, 167, 69, 0.7);
    border-radius: 2px;
    flex: 1;
    animation: growChart 2s ease-out;
}

.chart-bar-small:nth-child(1) { height: 40%; }
.chart-bar-small:nth-child(2) { height: 70%; }
.chart-bar-small:nth-child(3) { height: 100%; }
.chart-bar-small:nth-child(4) { height: 60%; }
.chart-bar-small:nth-child(5) { height: 85%; }

@keyframes growChart {
    from { height: 0; }
    to { height: var(--bar-height); }
}

/* Mobile optimization for image-text sections */
@media (max-width: 768px) {
    .image-text-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .image-text-content.reverse {
        direction: ltr;
    }

    .text-content h2 {
        font-size: 2rem;
    }

    .text-content p {
        font-size: 1.1rem;
    }

    .mock-image {
        height: 300px;
        font-size: 1.2rem;
    }

    .mock-image .icon {
        font-size: 3rem;
    }

    .image-text-section {
        padding: 60px 0;
    }
}

.floating-button-container {
    position: fixed;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 1000;
    pointer-events: none;
    }
    @keyframes bounce {
    0%, 100% {
    transform: translateY(0);
    }
    50% {
    transform: translateY(-10px);
    }
    }
    .floating-button {
    position: relative;
    background: #05C705;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
    white-space: nowrap;
    pointer-events: auto;
    }
    
    .floating-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }
    
    .floating-button .icon {
    font-size: 24px;
    }
    
    @media (max-width: 768px) {
    .floating-button-container {
    bottom: 20px;
    }
    
    .floating-button {
    font-size: 16px;
    padding: 12px 24px;
    }
    }
    
    @media (max-width: 480px) {
    .floating-button {
    font-size: 14px;
    padding: 10px 20px;
    }
    
    .floating-button .icon {
    font-size: 18px;
    }
    }