
      body {
        background: #f9fafb;
        font-family: "Inter", Arial, sans-serif;
        margin: 0;
        padding: 0;
        min-height: 100vh;
      }

      /* Header Styles */
      header {
        transition: all 0.3s ease;
        z-index: 1050;
      }
      header.scrolled {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(8px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      }
      header.default {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(4px);
      }

      /* Brand Logo */
      .brand-logo {
        width: auto;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .brand-logo img {
        max-height: 70px;
        width: auto;
        display: block;
      }

      /* Nav links */
      .nav-link {
        font-weight: 500;
        color: #374151;
        position: relative;
        transition: color 0.3s;
        text-decoration: none;
      }
      .nav-link:hover {
        color: #1e3a8a;
      }
      .nav-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 0;
        height: 2px;
        background: linear-gradient(to right, #facc15, #ca8a04);
        transition: width 0.3s;
      }
      .nav-link:hover::after {
        width: 100%;
      }

      /* Remove default Bootstrap caret */
      .dropdown-toggle::after {
        display: none !important;
      }

      /* Rotate chevron when dropdown is open */
      .dropdown-toggle .fa-chevron-down {
        transition: transform 0.3s ease;
      }
      .dropdown.show .fa-chevron-down {
        transform: rotate(180deg);
      }

      /* Mobile dropdown fix */
      #mobileNav .collapse .dropdown-item {
        padding: 0.5rem 0;
        color: #374151;
      }
      #mobileNav .collapse .dropdown-item:hover {
        color: #1e3a8a;
      }

      /* Gradient button */
      .btn-gradient {
        background: linear-gradient(to right, #facc15, #ca8a04);
        color: #fff;
        font-weight: 600;
        border-radius: 50px;
        padding: 0.6rem 1.5rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        border: none;
      }
      .btn-gradient:hover {
        background: linear-gradient(to right, #eab308, #a16207);
        transform: translateY(-2px);
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
        color: #fff;
      }

      /* Mobile menu button */
      .mobile-menu-btn {
        font-size: 1.5rem;
        color: #000 !important;
        background: none;
        border: none;
        outline: none;
      }
      .mobile-menu-btn:hover {
        color: #000 !important;
      }

      /* Mobile nav */
      #mobileNav a {
        color: #374151;
        font-weight: 500;
        transition: color 0.3s;
      }
      #mobileNav a:hover {
        color: #1e3a8a;
      }
      #mobileNav .btn-gradient {
        margin-top: 1rem;
      }

      /* Body padding to account for fixed header */
      body {
        padding-top: 100px;
        font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
      }

      /* Main container */
      .main-container {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        padding: 20px;
        min-height: calc(100vh - 120px);
      }

      .card-retire {
        max-width: 1050px;
        width: 100%;
        margin: 0 auto;
        border-radius: 20px;
        background: #fff;
        padding: 35px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        animation: fadeIn 0.8s ease-in-out;
      }

      @keyframes fadeIn {
        from {
          opacity: 0;
          transform: translateY(20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .heading {
        text-align: center;
        font-weight: 800;
        font-size: 2.2rem;
        color: black;
        margin-bottom: 20px;
      }

      .section-title {
        font-weight: 700;
        font-size: 1.1rem;
        color: #1e3a8a;
        margin-bottom: 15px;
        padding-bottom: 8px;
        border-bottom: 2px solid #e5e7eb;
        position: relative;
      }
      .section-title::before {
        content: "";
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 60px;
        height: 2px;
        background: linear-gradient(to right, #2563eb, #facc15);
      }

      .form-label {
        font-weight: 600;
        color: black;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 8px;
      }

      .form-label i {
        color: #2563eb;
        font-size: 0.9rem;
      }

      .range-value {
        font-weight: 700;
        color: #2563eb;
        margin-left: 8px;
        font-size: 0.95rem;
      }

      .form-range {
        margin-top: 8px;
      }

      .form-range::-webkit-slider-thumb {
        background: #2563eb;
        border: 2px solid #fff;
        height: 20px;
        width: 20px;
        border-radius: 50%;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
        transition: all 0.3s;
      }
      .form-range::-webkit-slider-thumb:hover {
        transform: scale(1.2);
        background: #1e40af;
      }

      .form-range::-moz-range-thumb {
        background: #2563eb;
        border: 2px solid #fff;
        height: 20px;
        width: 20px;
        border-radius: 50%;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
        transition: all 0.3s;
      }

      /* Custom dropdown styling */
      .custom-dropdown {
        position: relative;
      }

      .dropdown-select {
        background: #fff;
        border: 1px solid #d1d5db;
        border-radius: 6px;
        padding: 0.75rem 2.5rem 0.75rem 1rem;
        font-size: 1rem;
        color: #374151;
        cursor: pointer;
        transition: all 0.3s ease;
        width: 100%;
        position: relative;
      }

      .dropdown-select:focus {
        border-color: #2563eb;
        box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
        outline: none;
      }

      .dropdown-select::after {
        content: "\f078";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        color: #6b7280;
        pointer-events: none;
        transition: transform 0.3s ease;
      }

      .dropdown-select.open::after {
        transform: translateY(-50%) rotate(180deg);
      }

      .dropdown-options {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border: 1px solid #d1d5db;
        border-radius: 6px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        max-height: 200px;
        overflow-y: auto;
        display: none;
      }

      .dropdown-options.show {
        display: block;
      }

      .dropdown-option {
        padding: 0.75rem 1rem;
        cursor: pointer;
        transition: background-color 0.2s;
        border-bottom: 1px solid #f3f4f6;
      }

      .dropdown-option:last-child {
        border-bottom: none;
      }

      .dropdown-option:hover {
        background-color: #f9fafb;
      }

      .dropdown-option.selected {
        background-color: #eff6ff;
        color: #2563eb;
        font-weight: 600;
      }

      .existing-savings-fields {
        display: none;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.4s ease;
        margin-top: 20px;
        padding: 20px;
        background: #f8fafc;
        border: 2px solid #e2e8f0;
        border-radius: 12px;
      }
      .existing-savings-fields.show {
        display: block;
        opacity: 1;
        transform: translateY(0);
      }

      .result {
        background: #f1f5f9;
        padding: 18px;
        border-radius: 12px;
        margin-top: 16px;
        transition: transform 0.3s;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
        border-left: 4px solid #2563eb;
      }
      .result:hover {
        transform: scale(1.02);
        background: #e0f2fe;
      }
      .highlight {
        color: #2563eb;
        font-weight: 800;
        font-size: 1.2rem;
      }

      .savings-impact {
        background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
        border: 2px solid #0ea5e9;
        border-radius: 12px;
        padding: 20px;
        margin-top: 20px;
      }
      .savings-impact h6 {
        color: #0369a1;
        font-weight: 700;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 8px;
      }

      .btn-calc {
        background: linear-gradient(90deg, #2563eb, #1d4ed8);
        border: none;
        padding: 12px 20px;
        font-size: 1.3rem;
        font-weight: 600;
        border-radius: 10px;
        color: #fff;
        width: 50%;
        transition: all 0.3s;
      }
      .btn-calc:hover {
        background: linear-gradient(90deg, #1d4ed8, #2563eb);
        transform: scale(1.03);
      }
      .progress {
        height: 12px;
        border-radius: 8px;
        margin-bottom: 25px;
      }
      .progress-bar {
        background: linear-gradient(90deg, #2563eb, #1d4ed8);
        transition: width 0.5s ease;
      }
      .input-group-text {
        background: #f1f5f9;
        font-weight: 600;
        border: 1px solid #d1d5db;
      }

      .form-control {
        border: 1px solid #d1d5db;
        transition: all 0.3s ease;
      }

      .form-control:focus {
        border-color: #2563eb;
        box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
        transform: translateY(-1px);
      }

      /* COMPLETE FOOTER RESPONSIVE STYLES */

      /* Base Footer Styles (Desktop) - Keep existing styles intact */
      .footer {
        background: #111827;
        color: #fff;
        margin-top: auto;
      }

      .footer-logo {
        max-width: 60px;
        flex-shrink: 0;
      }

      .footer-logo img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
      }

      .social-btn {
        width: 40px;
        height: 40px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        transition: all 0.3s ease;
        text-decoration: none;
      }
      .social-btn.linkedin {
        background: linear-gradient(to right, #0a66c2, #004182);
      }
      .social-btn.twitter {
        background: linear-gradient(to right, #1da1f2, #0d8ddb);
      }
      .social-btn.youtube {
        background: linear-gradient(to right, #ff0000, #cc0000);
      }
      .social-btn:hover {
        transform: translateY(-3px);
        opacity: 0.9;
        color: #fff;
      }

      .footer-link {
        color: #d1d5db;
        text-decoration: none;
        transition: color 0.3s;
        line-height: 1.8;
      }
      .footer-link:hover {
        color: #facc15;
        text-decoration: underline;
      }

      .dot {
        width: 6px;
        height: 6px;
        background: linear-gradient(to right, #facc15, #2563eb);
        border-radius: 50%;
        margin-right: 10px;
        flex-shrink: 0;
        display: inline-block;
      }

      .icon-box {
        width: 40px;
        height: 40px;
        background: linear-gradient(to right, #facc15, #ca8a04);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #111827;
        flex-shrink: 0;
      }

      /* Text colors */
      .text-light {
        color: #d1d5db !important;
      }

      .text-white {
        color: #ffffff !important;
      }

      .text-warning {
        color: #facc15 !important;
      }

      /* Mobile Responsive Footer Styles */

      /* Extra Small devices (< 576px) */
      @media (max-width: 575.98px) {
        .footer {
          padding: 2rem 0 1rem;
        }

        .footer .container {
          padding-left: 15px;
          padding-right: 15px;
        }

        /* Override center alignment for mobile */
        .footer .row {
          text-align: left !important;
        }

        .footer .col-lg-3,
        .footer .col-md-6 {
          text-align: left !important;
          margin-bottom: 2rem;
          padding-left: 15px;
          padding-right: 15px;
        }

        /* Company Info Section */
        .footer .col-lg-3:first-child .d-flex.align-items-center.mb-3 {
          justify-content: flex-start;
          align-items: center;
          flex-wrap: wrap;
          gap: 10px;
        }

        .footer-logo {
          max-width: 45px;
        }

        .footer .col-lg-3:first-child h3 {
          font-size: 1rem;
          margin-bottom: 0;
          line-height: 1.2;
        }

        .footer .text-light.small {
          text-align: left;
          margin-bottom: 1rem;
          line-height: 1.4;
        }

        /* Social Media Section */
        .footer h5.fw-semibold.mt-4 {
          text-align: left;
          font-size: 1rem;
          margin-top: 1.5rem !important;
          margin-bottom: 0.75rem;
        }

        .footer .d-flex.gap-3.mt-2 {
          justify-content: flex-start;
          flex-wrap: wrap;
          gap: 0.75rem !important;
          margin-top: 0.75rem !important;
        }

        .social-btn {
          width: 36px;
          height: 36px;
          border-radius: 6px;
          font-size: 0.9rem;
        }

        /* Quick Links Section */
        .footer .col-lg-3:nth-child(2) h5 {
          font-size: 1rem;
          margin-bottom: 0.75rem;
          text-align: left;
        }

        .footer .list-unstyled {
          text-align: left;
          margin-bottom: 0;
        }

        .footer .list-unstyled li {
          margin-bottom: 0.5rem;
        }

        .footer-link {
          font-size: 0.9rem;
          line-height: 1.3;
        }

        /* Services Section */
        .footer .col-lg-3:nth-child(3) h5 {
          font-size: 1rem;
          margin-bottom: 0.75rem;
          text-align: left;
        }

        .footer .col-lg-3:nth-child(3) .list-unstyled li {
          margin-bottom: 0.5rem;
        }

        .footer .d-flex.align-items-center.mb-2 {
          align-items: flex-start;
          margin-bottom: 0.5rem !important;
        }

        .footer .dot {
          margin-top: 0.25rem;
          margin-right: 8px;
          flex-shrink: 0;
        }

        /* Contact Information Section */
        .footer .col-lg-3:last-child h5 {
          font-size: 1rem;
          margin-bottom: 0.75rem;
          text-align: left;
        }

        .footer .d-flex.mb-3 {
          justify-content: flex-start;
          align-items: flex-start;
          margin-bottom: 1rem !important;
          gap: 12px;
        }

        .icon-box {
          width: 36px;
          height: 36px;
          border-radius: 6px;
          flex-shrink: 0;
          margin-top: 2px;
        }

        .icon-box i {
          font-size: 0.9rem;
        }

        .footer .d-flex.mb-3 .ms-3 {
          margin-left: 0 !important;
          flex: 1;
        }

        .footer .fw-semibold {
          font-size: 0.9rem;
          margin-bottom: 0.25rem;
        }

        .footer .text-light.small {
          font-size: 0.85rem;
          line-height: 1.3;
        }

        /* Security Badges Section */
        .footer .border-top.border-secondary.pt-4.mt-5 {
          margin-top: 2rem !important;
          padding-top: 1.5rem !important;
        }

        .footer .d-flex.flex-wrap.gap-4 {
          justify-content: flex-start;
          flex-wrap: wrap;
          gap: 1rem !important;
        }

        .footer .d-flex.align-items-center.gap-2.text-light.small {
          margin-bottom: 0.5rem;
          font-size: 0.8rem;
          align-items: center;
        }

        .footer .fas.fa-shield-alt,
        .footer .fas.fa-lock {
          font-size: 0.8rem;
        }

        /* Compliance Disclaimer Section */
        .footer .border-top.border-secondary.pt-4.mt-4 {
          margin-top: 1.5rem !important;
          padding-top: 1.5rem !important;
        }

        .footer .bg-secondary.bg-opacity-25.rounded.p-4 {
          padding: 1.5rem !important;
          border-radius: 8px !important;
        }

        .footer h6.fw-semibold.text-warning.mb-3 {
          font-size: 0.9rem;
          margin-bottom: 0.75rem !important;
        }

        .footer .bg-secondary p.small.text-light {
          font-size: 0.75rem !important;
          line-height: 1.4;
          margin-bottom: 0;
        }

        /* Copyright Section - Centered */
        .footer .border-top.pt-4.mt-4.text-center {
          text-align: center !important;
          margin-top: 1.5rem !important;
          padding-top: 1.5rem !important;
        }

        .footer .text-center p {
          text-align: center !important;
          margin-bottom: 0.5rem;
          font-size: 0.85rem;
        }

        .footer .text-center p.small {
          font-size: 0.75rem !important;
          margin-bottom: 0;
        }

        .footer .text-center a {
          color: #facc15;
          text-decoration: none;
        }

        .footer .text-center a:hover {
          text-decoration: underline;
        }
      }

      /* Small devices (576px - 767px) */
      @media (min-width: 576px) and (max-width: 767.98px) {
        .footer {
          padding: 3rem 0 2rem;
        }

        /* Keep left alignment but with better spacing */
        .footer .row {
          text-align: left !important;
        }

        .footer .col-lg-3,
        .footer .col-md-6 {
          text-align: left !important;
          margin-bottom: 2rem;
        }

        .footer-logo {
          max-width: 50px;
        }

        .footer h5 {
          font-size: 1.1rem;
        }

        .social-btn {
          width: 38px;
          height: 38px;
        }

        .icon-box {
          width: 38px;
          height: 38px;
        }

        /* Copyright stays centered */
        .footer .text-center {
          text-align: center !important;
        }

        .footer .text-center p {
          text-align: center !important;
        }
      }

      /* Medium devices (768px - 991px) */
      @media (min-width: 768px) and (max-width: 991.98px) {
        .footer .col-md-6 {
          margin-bottom: 2rem;
        }

        /* On tablets, we can start using some centering for better balance */
        .footer .row {
          text-align: left;
        }
      }

      /* Ensure no horizontal overflow in footer */
      .footer * {
        word-wrap: break-word;
        overflow-wrap: break-word;
      }

      .footer .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
      }

      /* Fix for very long text in footer */
      .footer .text-light.small,
      .footer .footer-link {
        word-break: break-word;
        hyphens: auto;
      }

      /* Ensure footer links are touchable on mobile */
      @media (max-width: 767.98px) {
        .footer-link,
        .social-btn {
          min-height: 44px;
          display: flex;
          align-items: center;
          padding: 0.5rem 0;
        }

        .social-btn {
          min-height: 36px;
          justify-content: center;
        }
      }

      /* Dark mode compatibility */
      @media (prefers-color-scheme: dark) {
        .footer {
          background: #0f172a;
        }
      }

      /* Responsive Styles */
      @media (max-width: 575.98px) {
        body {
          padding-top: 80px;
        }

        header .container {
          padding: 0 15px;
        }

        .brand-logo img {
          max-height: 50px;
        }

        .fs-5 {
          font-size: 0.9rem !important;
        }

        .mobile-menu-btn {
          font-size: 1.2rem;
        }

        .main-container {
          padding: 10px;
        }

        .card-retire {
          padding: 20px;
          border-radius: 15px;
        }

        .heading {
          font-size: 1.8rem;
          margin-bottom: 15px;
        }

        .form-label {
          font-size: 14px;
        }

        .btn-calc {
          width: 100%;
          font-size: 1.1rem;
          padding: 14px 20px;
        }

        .result {
          flex-direction: column;
          align-items: flex-start;
          text-align: center;
        }

        .result div:first-child {
          margin-bottom: 8px;
          font-size: 14px;
        }

        .highlight {
          font-size: 1.1rem;
          align-self: center;
        }

        .form-range::-webkit-slider-thumb {
          height: 24px;
          width: 24px;
        }

        .form-range::-moz-range-thumb {
          height: 24px;
          width: 24px;
        }

        .existing-savings-fields {
          padding: 15px;
        }
      }

      @media (min-width: 576px) and (max-width: 767.98px) {
        body {
          padding-top: 90px;
        }

        .card-retire {
          padding: 25px;
        }

        .heading {
          font-size: 2rem;
        }

        .btn-calc {
          width: 70%;
        }
      }

      @media (min-width: 768px) and (max-width: 991.98px) {
        .card-retire {
          padding: 28px;
        }

        .btn-calc {
          width: 60%;
        }
      }

      @media (max-width: 1199.98px) {
        .card-retire {
          max-width: 90%;
        }
      }

      /* Landscape mobile orientation */
      @media (max-width: 767.98px) and (orientation: landscape) {
        body {
          padding-top: 70px;
        }

        .card-retire {
          padding: 20px;
        }

        .heading {
          font-size: 1.6rem;
          margin-bottom: 15px;
        }
      }

      /* Touch device improvements */
      @media (pointer: coarse) {
        .form-range {
          height: 8px;
        }

        .form-range::-webkit-slider-thumb {
          height: 26px;
          width: 26px;
        }

        .form-range::-moz-range-thumb {
          height: 26px;
          width: 26px;
        }

        .btn-calc {
          padding: 16px 20px;
          font-size: 1.2rem;
        }
      }

      /* Additional responsive improvements */
      @media (max-width: 400px) {
        .card-retire {
          padding: 15px;
          margin: 5px;
        }

        .heading {
          font-size: 1.6rem;
        }

        .input-group-text {
          padding: 0.375rem 0.5rem;
          font-size: 0.9rem;
        }

        .form-control {
          font-size: 0.9rem;
        }
      }
      .m-3 {
        text-align: center;
      }
      /* Privacy Policy Modal Styles */
      .privacy-modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 10001;
        animation: privacyFadeIn 0.3s ease-in-out;
      }

      @keyframes privacyFadeIn {
        from {
          opacity: 0;
        }
        to {
          opacity: 1;
        }
      }

      @keyframes privacyFadeOut {
        from {
          opacity: 1;
        }
        to {
          opacity: 0;
        }
      }

      .privacy-modal {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 20px;
        max-width: 700px;
        width: 95%;
        max-height: 100vh;
        overflow: hidden;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        animation: privacySlideUp 0.4s ease-out;
        position: relative;
      }

      @keyframes privacySlideUp {
        from {
          opacity: 0;
          transform: translateY(50px) scale(0.9);
        }
        to {
          opacity: 1;
          transform: translateY(0) scale(1);
        }
      }

      .privacy-modal-content {
        background: white;
        margin: 4px;
        border-radius: 16px;
        position: relative;
        height: 100%;
        display: flex;
        flex-direction: column;
      }

      .privacy-modal-header {
        text-align: center;
        padding: 30px 30px 20px;
        border-bottom: 2px solid #f0f0f0;
        flex-shrink: 0;
      }

      .privacy-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #4facfe, #00f2fe);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 15px;
        font-size: 20px;
        color: white;
      }

      .privacy-modal-title {
        color: #2d3436;
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 5px;
      }

      .privacy-modal-subtitle {
        color: #636e72;
        font-size: 14px;
        font-weight: 500;
      }

      .privacy-modal-body {
        padding: 20px 30px;
        color: #2d3436;
        font-size: 15px;
        line-height: 1.6;
        overflow-y: auto;
        flex-grow: 1;
      }

      .privacy-section {
        margin-bottom: 20px;
      }

      .privacy-section h4 {
        color: #0984e3;
        font-weight: 600;
        margin-bottom: 10px;
        font-size: 16px;
      }

      .privacy-section ul {
        margin-left: 20px;
        margin-top: 10px;
      }

      .privacy-section li {
        margin-bottom: 5px;
      }

      .privacy-highlight {
        background: linear-gradient(120deg, #e3f2fd 0%, #bbdefb 100%);
        padding: 15px;
        border-radius: 8px;
        border-left: 4px solid #2196f3;
        margin: 15px 0;
      }

      .privacy-contact {
        background: linear-gradient(135deg, #74b9ff, #0984e3);
        color: white;
        padding: 15px;
        border-radius: 10px;
        margin: 15px 0;
        text-align: center;
      }

      .privacy-contact strong {
        color: #fff;
      }

      .privacy-modal-footer {
        padding: 20px 30px;
        border-top: 2px solid #f0f0f0;
        text-align: center;
        flex-shrink: 0;
      }

      .privacy-close-btn {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border: none;
        padding: 12px 30px;
        border-radius: 25px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
      }

      .privacy-close-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 25px rgba(102, 126, 234, 0.4);
      }

      /* Responsive Design */
      @media (max-width: 768px) {
        .privacy-modal-overlay {
          padding: 10px;
        }

        .privacy-modal {
          width: 100%;
          max-height: 85vh;
        }

        .privacy-modal-content {
          max-height: calc(85vh - 8px);
        }

        .privacy-modal-body {
          max-height: calc(85vh - 180px);
          padding: 15px 20px;
          font-size: 14px;
        }

        .privacy-modal-header {
          padding: 20px 20px 15px;
        }

        .privacy-modal-footer {
          padding: 15px 20px 20px;
        }

        .privacy-modal-title {
          font-size: 20px;
        }
      }

      @media (max-width: 480px) {
        .privacy-modal {
          max-height: 90vh;
        }

        .privacy-modal-content {
          max-height: calc(90vh - 8px);
        }

        .privacy-modal-body {
          max-height: calc(90vh - 160px);
          padding: 15px;
        }

        .privacy-modal-header {
          padding: 15px;
        }

        .privacy-modal-footer {
          padding: 15px;
        }
      }
      /* Floating WhatsApp Button */
      .whatsapp-float {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background: #25d366;
        color: #fff;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        cursor: pointer;
        transition: 0.3s;
      }

      .whatsapp-float:hover {
        background: #20b954;
        transform: scale(1.1);
      }
   