@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap);

:root {
  --primary-blue: #004AAD;
  --primary-pink: #CD208B;
  --yellow: #FFD700;
  --text-dark: #000000;
  --text-light: #FFFFFF;
  --text-gray: #666;
  /* ===== FONT SIZES (LARGE SCREENS) ===== */
  --font-h1-large: 3.5rem;
  --font-h2-large: 2.5rem;
  --font-h3-large: 2.1rem;
  --font-p-large: 1.8rem;
  --font-small-large: 1.6rem;
  --font-smaller-large: 1.4rem;

  /* ===== FONT SIZES (SMALL SCREENS) ===== */
  --font-h1-small: 2.5rem;
  --font-h2-small: 1.8rem;
  --font-h3-small: 1.2rem;
  --font-p-small: 1rem;
  --font-small-small: 0.8rem;
  --font-smaller-small: 0.6rem;
}
        html {
            font-size: 1rem;
            scrollbar-gutter: stable;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', system-ui, -apple-system, sans-serif;
            transition: all 0.3s ease-in-out;
        }
        body {
            font-family: 'Poppins', system-ui, -apple-system, sans-serif;
        }
        /* Button Styles */
        .auth-buttons {
            display: flex;
            gap: 1rem;
            align-items: center;
            position: relative;
        }
        .btn {
            padding: 0 1.5rem;
            border-radius: 12px;
            font-size: 20px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 120px;
            height: 50px;
        }
        .btn-primary {
            background: var(--primary-pink);
            border: 2px solid var(--primary-pink);
            color: var(--text-light);
            font-size: 26px;
            height: 50px;
        }
        .btn-outline {
            background: white;
            border: 2px solid var(--primary-blue);
            color: var(--primary-blue);
        }
        .btn-gigs {
            background: var(--primary-blue);
            border: 2px solid var(--primary-blue);
            color: var(--text-light);
        }
        .btn-primary:hover {
            background: white;
            border: 2px solid var(--primary-pink);
            color: var(--primary-pink);
            text-decoration: none;
        }
        .btn-outline:hover {
            background: var(--primary-blue);
            color: var(--text-light);
            text-decoration: none;
        }
        .btn-gigs:hover {
            background: white;
            color: var(--primary-blue);
        }

        .mobile-auth-buttons .btn-outline {
            background: white;
            color: var(--primary-blue);
            border: 2px solid var(--primary-blue);
        }
        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.4);
            justify-content: center;
            align-items: center;
        }
        .modal-content {
            background-color: var(--text-light);
            padding: 2rem;
            border-radius: 10px;
            width: 90%;
            max-width: 500px;
            position: relative;
            text-align: center;
        }
        .modal-content h2 {
            font-size: 24px;
            color: var(--primary-blue);
        }
        .modal-buttons {
            margin-top: 1.5rem;
            display: flex;
            justify-content: center;
            padding: 0 2rem;
        }
        .modal-buttons .btn {
            width: auto;
            min-width: 160px;
            max-width: 80%;
            margin: 0 auto;
        }
        .social-login-btn {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            margin-bottom: 10px;
        }
        .social-login-btn img {
            width: 20px;
            height: 20px;
            object-fit: contain;
        }
        .close {
            position: absolute;
            right: 1rem;
            top: 0.1rem;
            font-size: 2rem;
            cursor: pointer;
        }
        .role-selection {
            margin: 2rem 0;
        }
        .role-option {
            border: 2px solid var(--primary-blue);
            border-radius: 10px;
            padding: 1rem;
            margin: 1rem 0;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .role-option:hover {
            background-color: var(--text-light);
        }
        .role-option.selected {
            border-color: var(--primary-pink);
            background-color: var(--text-light);
        }
        .role-option input[type="radio"] {
            margin-right: 0.5rem;
        }
        .login-link {
            text-align: center;
            margin-top: 15px;
            font-size: 0.9rem;
            color: var(--text-gray);
        }
        .login-link a {
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 500;
        }
        .login-link a:hover {
            text-decoration: underline;
        }
        .login-modal-content {
            max-width: 400px;
            padding: 2rem;
        }
        .login-container {
            width: 100%;
        }
        .login-container h2 {
            text-align: center;
            color: var(--primary-blue);
            margin-bottom: 1.5rem;
        }
        .login-container form .btn-primary {
            width: auto;
        }
        .form-group {
            position: relative;
            margin-bottom: 1rem;
        }
        .form-group i {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-gray);
        }
        .form-group input {
            width: 100%;
            padding: 0.8rem 1rem 0.8rem 2.5rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }
        .checkbox-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }
        .forgot-password-link {
            color: var(--primary-blue);
            text-decoration: none;
            font-size: 0.9rem;
        }
        .forgot-password-link:hover {
            text-decoration: underline;
        }
        .or-separator {
            text-align: center;
            margin: 1rem 0;
            position: relative;
        }
        .or-separator::before,
        .or-separator::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 45%;
            height: 1px;
            background-color: #ddd;
        }
        .or-separator::before {
            left: 0;
        }
        .or-separator::after {
            right: 0;
        }
        .signup-link {
            text-align: center;
            margin-top: 15px;
            font-size: 0.9rem;
            color: var(--text-gray);
        }
        .signup-link a {
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 500;
        }
        .signup-link a:hover {
            text-decoration: underline;
        }
        .forgot-password-modal {
            max-width: 400px;
            padding: 2rem;
        }
        .forgot-password-modal h2 {
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }
        .forgot-password-modal input {
            width: 100%;
            padding: 0.8rem;
            margin: 1rem 0;
            border: 1px solid #ddd;
            border-radius: 5px;
        }
        /* Container Styles */
        .container {
            max-width: 2000px;
            margin: auto;
            padding: auto;
        }
        /* Navbar Styles */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0rem 1rem;
            background: white;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            height: 5.5rem;
        }

        .navbar-left {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 1.7rem;
            color: var(--primary-pink);
            margin-right: 1rem;
        }

        .logo img {
            width: 3rem;
            height: 3rem;

        }

        .logo h1 {
            font-size: 2rem;
            font-weight: bold;
        }

        .nav-links {
            display: flex;
            gap: 1rem;
            list-style: none;
            align-items: center;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .nav-links a {
            color: var(--primary-blue);
            text-decoration: none;
            padding: 0.5rem 1rem;
            font-size: 1.25rem;
            font-weight: 500;
        }
        .nav-links a:hover, .nav-links a.active {
            color: var(--primary-pink);
        }
    
        .search-auth-content {
            display: flex;
            align-items: center;
            gap: 0;
            padding: 0.5rem 1rem;
        }
        /* Sidebar Styles */
        .sidebar {
            width: var(--sidebar-width);
            padding: 2rem;
            border-right: 1px solid #e0e0e0;
        }
        .sidebar-nav {
            list-style: none;
        }
        .sidebar-nav li {
            margin-bottom: 1rem;
        }
        .sidebar-nav a {
            color: var(--primary-blue);
            text-decoration: none;
            font-size: 0.95rem;
        }
        .sidebar-nav a:hover {
            color: var(--primary-pink);
        }
        .sidebar-nav .active {
            color: var(--primary-pink);
            font-weight: bold;
            border-left: 3px solid var(--primary-pink);
            padding-left: 1rem;
        }
        /* Main Content Styles */
        .main-content {
            max-width: 1500px;
            margin: 0 auto;
            padding: 1rem 2rem;
        }
        .main-content h1 {
            font-size: 2rem;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #e0e0e0;
        }
        .main-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .last-updated {
            color: var(--text-gray);
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .section {
            margin-bottom: 2rem;
        }
        .section h2 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--text-color);
        }
        .section-content {
            color: var(--text-gray);
        }
        /* Side nav styles */
        .side-nav {
            position: fixed;
            top: 0;
            left: -100%;
            height: 100vh;
            width: 100%;
            background-color: white;
            z-index: 1000;
            transition: left 0.3s ease;
            overflow-y: auto;
            box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        }
        .side-nav.active {
            left: 0;
        }
        .side-nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0,0,0,0.5);
            z-index: 999;
            display: none;
        }
        .side-nav-overlay.active {
            display: block;
        }
        .side-nav-content {
            padding: 80px 20px 20px 20px;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
        }
        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            width: 100%;
            padding: 20px;
            color: var(--primary-blue);
            text-decoration: none;
            border-bottom: 1px solid #eee;
            transition: background-color 0.2s ease;
            font-size: 1.2rem;
            text-align: center;
            margin: 10px 0;
            font-weight: 500;
        }
        .nav-item:hover {
            color: var(--primary-pink);
            background-color: #f8f8f8;
        }
        .side-nav.active + .hamburger span {
            background-color: var(--primary-blue);
        }
        /* Footer Styles */
        footer {
            background: var(--primary-blue);
            padding: 2.5rem 5%;
            align-items: center;
            padding-bottom: 2rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
            margin-bottom: 2rem;
        }
        .footer-column h3 {
            font-size: var(--font-h3-large);
            margin-bottom: 0.5rem;
            color: var(--text-light);
        }
        .footer-column a {
            font-size: 21px;
            display: block;
            color: var(--text-light);
            text-decoration: none;
            margin-bottom: 0.5rem;
            transition: text-decoration 0.3s ease;
        }
        .footer-column a:hover {
            text-decoration: underline;
        }
        .footer-bottom {
            font-size: 21px;
            color: var(--text-light);
            text-align: center;
            padding-top: 2rem;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10rem;
            border-top: 1px solid white;
        }
        .footer-bottom a {
            color: var(--text-light);
            margin: 0 10px;
            text-decoration: none;
        }
        .footer-bottom .brand-link {
        color: inherit;
        font-weight: inherit;    
        text-decoration: none;
        }

        .footer-bottom .brand-link:hover,
        .footer-bottom .brand-link:focus-visible {
        color: var(--primary-pink) !important;
        outline: none;
        text-decoration: none;
        }

        .footer-bottom .brand-link:visited {
        color: inherit;
        }
        .footer-bottom a:hover {
            text-decoration: underline;
        }
        .footer-bottom .social-icons img {
            width: 1rem;
            height: 1rem;
        }
        .social-icons .bi {
            font-size: 1.5rem;
            margin-right: 10px;
            border-radius: 50%;
            color: var(--text-light);
            transition: transform 0.3s ease, color 0.3s ease;
        }
        .social-icons .bi:hover {
            transform: scale(1.2);
            color: var(--primary-pink);
        }
        /* Hamburger Menu Styles */
        .hamburger {
            position: relative;
            display: none;
            cursor: pointer;
            padding: 15px;
            background: none;
            border: none;
            z-index: 1001;
        }
        .hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px 0;
            background-color: var(--primary-blue);
            transition: all 0.3s ease;
        }
        .main-content {
            max-width: 1500px;
            margin: 0 auto;
            padding: 1rem;
        }
        .introduction-section {
            width: 100%;
            padding-top: 20px;
        }
        .introduction-content {
            width: 100%;
            height: 600px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            margin: 0 auto;
            position: relative;
        }
        .slideshow {
            position: relative;
            width: 100%;
            height: 100%;
        }
        .slide {
            display: none;
            animation: fade 3s ease-in-out;
            width: 100%;
            height: 100%;
        }
        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        /* Smaller arrows */
        .prev, .next {
            cursor: pointer;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            padding: 12px;
            color: white;
            font-weight: bold;
            font-size: 18px;
            transition: 0.6s ease;
            border-radius: 50%;
            user-select: none;
            background: rgba(0, 0, 0, 0.3);
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .next {
            right: 15px;
        }
        .prev {
            left: 15px;
        }
        .prev:hover, .next:hover {
            background: rgba(0, 0, 0, 0.8);
        }
        .fade {
            animation-name: fade;
            animation-duration: 3s;
        }
        @keyframes fade {
            from {opacity: .4}
            to {opacity: 1}
        }
        .benefits-section {
            display: flex;
            align-items: center;
            gap: 3rem;
            padding: 2rem;
            max-width: 1500px;
            margin: 2rem auto;
            background: white;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            border: 1px solid #eee;
        }
        .benefits-image {
            flex: 1;
            max-width: 500px;
        }
        .benefits-image img {
            width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        .benefits-image img:hover {
            transform: scale(1.02);
        }
        .benefits-content {
            flex: 1;
            padding: 0;
            font-family: 'Poppins', sans-serif;
            text-align: justify;
            line-height: 1.6;
            font-size: 1.2rem;
        }
        .benefits-content h2 {
            font-size: 40px;
            color: var(--primary-pink);
            font-family: 'Poppins', sans-serif;
            font-weight: bold;
            text-align: left;
        }
        .benefits-content h2 span {
            color: var(--primary-blue);
            font-weight: bold;
            text-align: left;
        }
        .benefits-content p {
            font-size: 21px;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
            text-align: left;
        }
        .checklist {
            list-style: none;
            padding: 0;
            margin: 2rem 0;
            text-align: left;
        }
        .checklist li {
            position: relative;
            padding-left: 2rem;
            margin-bottom: 1rem;
            font-size: 21px;
            color: var(--text-dark);
        }
        .checklist li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #28a745;
            font-weight: bold;
        }
        .features-section {
            display: flex;
            justify-content: space-between;
            align-items: stretch;
            gap: 20px;
            flex-wrap: wrap; 
            margin-bottom: 40px;
        }

        .feature-card {
        flex: 1 1 calc(33.333% - 20px);  
        background-color: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .feature-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;  
        display: block;
        }
        .kwikcare-logo {
            color: #0e76bc;
            font-size: 2.5rem;
            font-weight: bold;
        }
        .kwikcare-logo span {
            color: #30c4c4;
        }
        .kwikcare-social {
            margin-top: 1rem;
            text-align: center;
        }
    .kwikcare-image {
        margin: -1rem auto;
        max-width: 300px;
    }
    .kwikcare-image img {
        width: 100%;
        height: auto;
    }
    .steps-container {
        display: flex;
        justify-content: space-around;
        margin: 1.5rem 0;
        flex-wrap: wrap;
        gap: 2rem;
    }
    .steps-container h3 {
        font-size: 1.3rem;
        color: var(--primary-blue);
    }
    .steps-container p {
        font-size: 1rem;
        color: var(--text-dark);
        margin-bottom: 1rem;
        text-align: left;
    }
    .step-card {
        flex: 1;
        min-width: 250px;
        padding: 2rem;
        border-radius: 15px;
        background: white;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        border: 2px solid var(--primary-blue);
    }
    .step-card.signup, .step-card.products, .step-card.code {
        background: white;
    }
    .step-card i {
        font-size: 75px;
        color: var(--primary-blue);
        margin-bottom: 1rem;
    }
    .step-card h3 {
        font-size: 30px;
        color: var(--primary-pink);
        text-align: left;
    }
    .step-card p {
        font-size: 21px;
        
    }
    .referral-code {
        color: var(--primary-pink);
        font-weight: bold;
    }
.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 0;
    flex-wrap: wrap;
    font-size: 21px;
}
.social-link {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-blue);
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
    background-color: #f5f5f5;
}
.social-link:hover {
    background-color: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
}
.social-link i {
    font-size: 1.2rem;
}
.center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}
.center-content p {
    font-size: 21px;
    margin-bottom: 1rem;
    text-align: center;
}
.signup-button-container {
    text-align: center;
}
    .copyright {
        font-size: 0.9rem;
        color: #666;
        margin-top: 1rem;
        text-align: center;
    }
    .explore-button-container {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 2rem;
    }
    .benefits-content-full {
        width: 100%;
        text-align: center;
    }

    .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  background: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  height: 5.5rem;
  position: relative;
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}

/* FIXED CENTERING */
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;

  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  
  white-space: nowrap; 
  max-width: 60%; 
  justify-content: center;
}

.nav-links a {
  color: var(--primary-blue);
  text-decoration: none;
  padding: 0.5rem 1rem;
  font-size: 20px;
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-pink);
}

.btn-gigs,
.signup-button {
  display: inline-flex;      
  align-items: center;        
  justify-content: center;      
  text-align: center;
  padding: 0.8rem 2rem;
  font-size: 20px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.social-text {
    margin: 1rem 0;
}

@media (max-width: 1200px) {
    html {
    font-size: 15px;
  }

  .main-content {
    max-width: 1100px;
  }

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
    position: relative;
  }

  .navbar-left {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .hamburger {
    display: block;
    position: absolute;
    right: 1.5rem;  
    top: 50%;
    transform: translateY(-50%);
    z-index: 1002;
    cursor: pointer;
  }

  .hamburger span {
    background-color: var(--primary-blue);
  }

  .nav-links,
  .navbar-right {
    display: none;
  }


  .navbar-right .auth-buttons {
    display: none; 
  }

  .mobile-auth-buttons {
    display: flex; 
    gap: 0.5rem;
  }


  .benefits-section {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
  }

  .benefits-image {
    display: none; 
  }

  .benefits-content .btn {
    display: inline-block;
    align-self: flex-start;
  }

  .step-card h3 {
    line-height: 1.2;
  }

  /* Footer Dropdown */
  .footer-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .footer-column {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 0.5rem;
  }

  .footer-column h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--font-h3-large);
    color: var(--text-light);
    cursor: pointer;
    padding: 0.8rem 0;
    margin: 0;
    position: relative;
  }

  .footer-column h3::after {
    content: '▾';
    font-size: 2rem;
    color: var(--text-light);
    transition: transform 0.3s ease;
  }

  .footer-column h3.active::after {
    transform: rotate(180deg);
  }

  .footer-column .footer-links {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
  }

  .footer-column .footer-links.show {
    max-height: 300px;
    opacity: 1;
    margin-top: 0.5rem;
  }

  .footer-column .footer-links a {
    display: block;
    font-size: 24px;
    color: var(--text-light);
    text-decoration: none;
    margin: 0.3rem 0;
  }

  .footer-column .footer-links a:hover {
    text-decoration: underline;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.75rem;
    font-size: 24px;
    padding-top: 1.5rem;
    border-top: 1px solid white;
  }
}

@media (max-width: 768px) {
    html {
    font-size: 14px;
  }

  h1, h2, h3, p, a, li, span {
    font-size: inherit;
  }

  .logo h1 {
    font-size: 1.5rem;
  }

  .logo img {
    height: 3rem;
    width: 3rem;
  }


  .btn,
  .navbar a,
  .nav-item,
  .footer-column a,
  .footer-bottom {
    font-size: 16px;
  }

 

  .feature-card {
    flex: 1 1 100%;
  }

  .center-content p {
    font-size: 17px;
  }

  .social-links {
    margin-top: 0;
  }

  .social-text {
    margin: 1rem 0;
  }

  .step-card i {
    font-size: 55px;
  }

  /* Footer layout */
  footer {
    padding: 1rem 5%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    font-size: 16px;
    text-align: center;
    border-top: none;
  }

  .footer-column h3 {
    font-size: var(--font-h3-small);
  }

  .footer-column h3.active::after {
    font-size: 1.5rem;
  }

  .footer-column .footer-links a {
    font-size: 16px;
    text-align: left;
  }

  .social-icons {
    justify-content: center;
    margin-top: 0.5rem;
  }

  .social-icons .bi {
    font-size: 1.4rem;
  }

  .nav-item {
    font-size: var(--font-smaller-large);
  }

  .benefits-content h2 {
    font-size: 25px;
    line-height: 1.3;
  }

  .benefits-content p {
    font-size: 17px;
  }

  .checklist li {
    font-size: 17px;
  }

  .step-card h3 {
    font-size: 25px;
  }

  .step-card p {
    font-size: 17px;
}

.social-links {
    font-size: 15px;
}
}

@media (max-width: 430px) {
    html {
    font-size: 13px;
  }

  .logo h1 {
    font-size: 1.2rem;
  }

  .logo img {
    height: 2.5rem;
    width: 2.5rem;
  }

  .step-card h3{
        text-align: center;
    }

    .step-card p {
        text-align: center;
    }

    .social-links {
        width: 250px;
    }

}
