body {
    font-family: 'Poppins', sans-serif;
}

.benefit-box {
    height: 100%;
    padding: 40px 20px;
    box-shadow: -1px -8px 30px 0px rgba(133, 66, 189, 0.1);
    position: relative;
    text-align: center;
}

.benefit-image {
    width: 80%;
    min-height: 70%;
    margin: 10px auto;
    text-align: center;
}

.benefit-title {
    font-weight: 600;
}

.benefit-text {
    font-size: 14px;
    font-weight: 300;
    color: #5d6970;
}

.section {
    padding: 70px 0;
}

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

.section-title h4 {
    margin-bottom: 0;
    font-weight: 300;
    color: #5d6970;
}

.section-title h2 {
    font-weight: 700;
    font-size: 35px;
}

.top-header {
    border-top: 4px solid #ff4a0a;
}

/* Buttons */
.btn {
    font-size: 14px;
    border-radius: 0;
}

.btn-primary {
    background-color: #ff4a0a;
    border: 1px solid #ff4a0a;
}

.btn-primary:hover {
    background-color: #ff4a0a;
    border: 1px solid #ff4a0a;
    opacity: 0.8;
}

.btn-outline-primary {
    border: 1px solid #ff4a0a;
    color: #df741b;
}

.btn-outline-primary:hover {
    background-color: #ff4a0a;
    border: 1px solid #ff4a0a;
}

.main-info h1 {
    font-size: 60px;
    font-weight: 700;
}

.main-info p {
    color: #5d6970;
}

.order-easy-steps {
    padding-bottom: -150px;
}

.order-step-circle {
    width: 80px;
    height: 80px;
    background-color: #ededed;
    margin: 0 auto;
    border-radius: 50%;
    padding-top: 20px;
    color: #ff4a0a;
}

.order-step-infos {
    margin: 20px 0;
}

.order-step-infos h2 {
    font-size: 22px;
    font-weight: 600;
}

.order-step-infos p {
    font-size: 14px;
    color: #5d6970;
}

.order-step-circle i {
    font-size: 35px;
}

.order-step-image {
    padding-top: 50px;
}

.container-orange {
    width: 100%;
    height: 178px;
    background-color: #ff4a0a;
    margin-top: -150px;
}

.order-easy-steps .arrow-step::after {
    font-family: 'Font Awesome 5 Pro';
    content: "\f324";
    position: absolute;
    font-size: 35px;
    top: 5%;
    right: -10px;
    color: #ff4a0a;

}

.bg-orange {
    background-color: #ff4a0a;
}

.featured h2 {
    font-weight: 700;
    font-size: 55px;
}

.featured span {
    color: #ff4a0a;
    font-weight: bold;
    margin: 20px 0;
}

.featured p {
    color: #5d6970;
    font-weight: 300;
}

.plans .plan-title {
    padding: 30px 0;
}

.plans .plan-title h2 {
    font-weight: 800;
    font-size: 60px;
    line-height: 65px;
}

.plans .plan-title h2 span {
    font-size: 100px;
}

.plan-benefits ul {
    list-style: none;
    margin: 65px 0;
    padding: 10px;
    position: relative;
    width: 100%;
}

.plan-benefits ul li {
    display: block;
    margin-right: 20px;
    margin-bottom: 10px;
    font-size: 22px;
    color: #5d6970;
    font-weight: 300;
    position: relative;
}

.plan-benefits ul li::after {
    font-family: 'Font Awesome 5 Pro';
    content: "\f324";
    position: absolute;
    font-size: 25px;
    top: 0;
    left: -30px;
    color: #ff4a0a;
}

.news-message p {
    font-weight: bold;
    color: #5d6970;
    font-size: 25px;
    margin: 20px 0;

}

.footer {
    margin-top: 70px;
}

.footer .main-footer {
    background: #ededed;
}

.footer .main-footer .container {
    border-top: 2px solid #ff4a0a;
    padding: 50px 0 25px;
}

.footer .copy-footer {
    padding: 10px 0;
}

.footer .nav-footer {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.footer .nav-footer li {
    margin-right: 15px;
}

.footer .nav-footer li:last-child {
    margin-right: 0;
}

.footer .nav-footer li a {
    color: #5d6970;
}

.footer .nav-footer li a:hover {
    color: #ff4a0a;
}

.terms-page p {
    color: #5d6970;
    font-size: 14px;
}

.terms-page p strong {
    color: #000;
}

/* ========================================
   Home Page Animations & Effects
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* ========================================
   Feature Cards
   ======================================== */

.feature-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    padding: 30px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: white;
}

/* ========================================
   Stats Counter
   ======================================== */

.stats-counter {
    font-size: 48px;
    font-weight: 700;
    color: #FF6B35;
    line-height: 1;
}

/* ========================================
   Integration Badges
   ======================================== */

.integration-badge {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin: 10px;
    transition: transform 0.3s ease;
    color: #333;
    font-weight: 500;
}

.integration-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.integration-badge i {
    font-size: 24px;
    margin-right: 10px;
}

/* ========================================
   Gradient Backgrounds
   ======================================== */

.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cta-section {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    padding: 80px 0;
    color: white;
}

/* ========================================
   Testimonial Cards
   ======================================== */

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin: 15px;
}


/* ========================================
   Accessibility & SEO Improvements
   ======================================== */

/* Skip to main content link */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
    background-color: #FF6B35;
    color: white;
    padding: 10px 20px;
    z-index: 9999;
    display: block;
    text-align: center;
    font-weight: 600;
}

/* Improve focus visibility for keyboard navigation */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid #FF6B35;
    outline-offset: 2px;
}

/* Ensure sufficient color contrast */
.text-muted {
    color: #5d6970 !important;
}

/* Improve readability */
p, li {
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
}

/* Performance: Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Print styles for better SEO */
@media print {
    .top-header,
    .footer,
    .btn,
    .animate-on-scroll {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }
}
