    :root {
        --primary-color: #ff6400;
        --primary-dark: #e05a00;
        --text-dark: #1a1a1a;
        --text-light: #6c757d;
        --border-light: #e9ecef;
        --shadow-light: rgba(0, 0, 0, 0.08);
        --shadow-medium: rgba(0, 0, 0, 0.12);
        --gradient-bg: linear-gradient(135deg, #ff6400 0%, #fc9731 100%);
    }

    * {
        font-family: 'Inter', sans-serif;
    }

    body {
        line-height: 1.6;
        color: var(--text-dark);
    }

    .btn-warning {
        background: var(--primary-color);
        border: none;
        font-weight: 500;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(255, 127, 7, 0.3);
    }

    .btn-warning:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 139, 7, 0.4);
    }

    .form-control {
        border: 2px solid var(--border-light);
        border-radius: 12px;
        padding: 12px 16px;
        transition: all 0.3s ease;
        font-size: 14px;
    }

    .form-control:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
    }

    .form-floating>label {
        font-weight: 500;
        color: var(--text-light);
    }

    .card-modern {
        background: white;
        border-radius: 24px;
        border: none;
        box-shadow: 0 20px 60px var(--shadow-light);
        transition: all 0.3s ease;
    }

    .card-modern:hover {
        transform: translateY(-5px);
        box-shadow: 0 30px 80px var(--shadow-medium);
    }

    .hero-section {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        background: var(--gradient-bg);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 16px;
    }

    .feature-card {
        padding: 25px;
        background: white;
        border-radius: 20px;
        border: none;
        box-shadow: 0 10px 40px var(--shadow-light);
        transition: all 0.3s ease;
        height: 100%;
    }

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 60px var(--shadow-medium);
    }

    .section-title {
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 3px;
    }

    .section-subtitle {
        color: var(--text-light);
        font-size: 18px;
    }

    .navbar {
        backdrop-filter: blur(10px);
        background: rgba(255, 255, 255, 0.95) !important;
    }

    .nav-link {
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .nav-link:hover {
        color: var(--primary-color) !important;
    }

    .testimonial-card {
        background: white;
        border-radius: 20px;
        padding: 32px;
        border: none;
        box-shadow: 7px 6px #eeeeeeb5;
        margin: 16px;
    }

    .advantage-item {
        padding: 24px;
        background: white;
        border-radius: 16px;
        box-shadow: 0 8px 30px var(--shadow-light);
        margin-bottom: 24px;
        transition: all 0.3s ease;
    }

    .advantage-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 45px var(--shadow-medium);
    }

    .contact-card {
        background: white;
        border-radius: 20px;
        padding: 32px;
        box-shadow: 0 15px 50px var(--shadow-light);
        height: 100%;
    }

    .stats-number {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--primary-color);
        display: block;
    }

    .stats-label {
        color: var(--text-light);
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-size: 14px;
    }

    .hero-section {
        background: #ffcbaa url(../images/section-bg-vector1.svg) 50% 0% no-repeat;
        background-size: auto;
        background-size: auto;
        background-size: contain;
        /* margin-top: 80px; */
    }

    .f-banner {
        background: #ffc7a5;
        position: relative;
        overflow: hidden;
    }

    .wave {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: auto;
        z-index: 1;
    }

    .ripple {
        position: absolute;
        top: -17%;
        right: 30%;

        z-index: 1;
    }

    .text-warning {
        color: #ff6400 !important;
    }

    .btn-warning {
        background-color: #ff6400 !important;
        border-color: #ff6400 !important;
        color: #fff;
    }
    .social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: solid 1px #ff6400;
  color: #ff6400;
}
.social-btn:hover {
  background-color: #ff6400;
  border: solid 1px #ff6400;
  color: #fff;
}