 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: "League Spartan", sans-serif;
     overflow-x: hidden;
     background: #0a0e27;
     color: #fff;
 }

 /* Navbar */
 .navbar {
     position: fixed;
     top: 0;
     width: 100%;
     padding: 5px 5%;
     display: flex;
     justify-content: space-between;
     align-items: center;
     background-color: #fff;
     backdrop-filter: blur(10px);
     z-index: 1000;
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
 }

 .logo img {
     width: 125px;
     height: 50px;
     padding-top: 5px;
     object-fit: contain;
 }

 .nav-links {
     display: flex;
     gap: 40px;
     align-items: center;
 }

 .nav-links a {
     color: #2D4792;
     text-decoration: none;
     font-weight: 500;
     transition: all 0.3s;
 }

 .nav-links a:hover {
     color: #667eea;
 }

 .cta-btn {
     font-family: "League Spartan", sans-serif;
     padding: 12px 30px;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     border: none;
     border-radius: 30px;
     color: #fff;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s;
     box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
 }

 .cta-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 30px rgba(102, 126, 234, 0.6);
 }

 .hamburger {
     display: none;
     flex-direction: column;
     gap: 5px;
     cursor: pointer;
     padding: 5px;
     z-index: 1001;
 }

 .hamburger span {
     width: 25px;
     height: 3px;
     background: #2D4792;
     border-radius: 2px;
     transition: all 0.3s;
 }

 .hamburger.active span:nth-child(1) {
     transform: rotate(45deg) translate(8px, 8px);
 }

 .hamburger.active span:nth-child(2) {
     opacity: 0;
 }

 .hamburger.active span:nth-child(3) {
     transform: rotate(-45deg) translate(7px, -7px);
 }

 /* Terms Header */
 .terms-header {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     padding: 120px 5% 60px;
     text-align: center;
 }

 .terms-header h1 {
     font-size: 48px;
     margin-bottom: 15px;
 }

 .terms-header p {
     font-size: 18px;
     opacity: 0.9;
 }

 /* Terms Container */
 .terms-container {
     max-width: 900px;
     margin: 0 auto;
     padding: 40px 5%;
 }

 .effective-date {
     font-size: 14px;
     color: rgba(255, 255, 255, 0.6);
     margin-bottom: 40px;
     padding-bottom: 20px;
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
 }

 .terms-content h2 {
     font-size: 28px;
     margin-top: 50px;
     margin-bottom: 20px;
     color: #667eea;
 }

 .terms-content h3 {
     font-size: 20px;
     margin-top: 30px;
     margin-bottom: 15px;
     color: #fff;
 }

 .terms-content p {
     font-size: 16px;
     line-height: 1.8;
     color: rgba(255, 255, 255, 0.8);
     margin-bottom: 15px;
 }

 .terms-content ul {
     margin: 15px 0 15px 30px;
     list-style: disc;
 }

 .terms-content ul li {
     font-size: 16px;
     line-height: 1.8;
     color: rgba(255, 255, 255, 0.8);
     margin-bottom: 12px;
 }

 .terms-content strong {
     color: #667eea;
 }

 /* Footer */
 footer {
     padding: 60px 5%;
     background: #050814;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     margin-top: 60px;
 }

 .footer-content {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 40px;
     max-width: 1200px;
     margin: 0 auto 40px;
 }

 .footer-section h4 {
     margin-bottom: 20px;
     color: #667eea;
 }

 .footer-section a {
     display: block;
     color: rgba(255, 255, 255, 0.6);
     text-decoration: none;
     margin-bottom: 10px;
     transition: color 0.3s;
 }

 .footer-section a:hover {
     color: #667eea;
 }

 .footer-section p {
     margin-bottom: 10px;
     color: rgba(255, 255, 255, 0.6);
 }

 .footer-bottom {
     display: flex;
     justify-content: space-between;
     text-align: center;
     padding-top: 40px;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     color: rgba(255, 255, 255, 0.5);
     flex-wrap: wrap;
     gap: 15px;
 }

 .footer-bottom p {
     font-size: 14px;
 }

 .footer-bottom a {
     text-decoration: none;
     color: rgba(255, 255, 255, 0.5);
     font-size: 14px;
 }

 .footer-bottom a:hover {
     color: #667eea;
 }

 .back-to-home {
     display: inline-block;
     margin-bottom: 40px;
     padding: 10px 20px;
     background: rgba(102, 126, 234, 0.2);
     border: 1px solid #667eea;
     border-radius: 20px;
     color: #667eea;
     text-decoration: none;
     transition: all 0.3s;
     font-size: 14px;
 }

 .back-to-home:hover {
     background: rgba(102, 126, 234, 0.3);
     transform: translateX(-5px);
 }

 /* ========================================
           RESPONSIVE DESIGN - ALL BREAKPOINTS
           ======================================== */

 /* X-Small devices (portrait phones, less than 576px) */
 @media (max-width: 575.98px) {
     .navbar {
         padding: 5px 4%;
     }

     .logo img {
         width: 90px;
         height: 40px;
     }

     .hamburger {
         display: flex;
     }

     .nav-links {
         position: fixed;
         top: 55px;
         left: -100%;
         width: 100%;
         height: calc(100vh - 55px);
         background: white;
         flex-direction: column;
         gap: 0;
         padding: 15px;
         transition: left 0.3s ease;
         overflow-y: auto;
         box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
         align-items: stretch;
     }

     .nav-links.active {
         left: 0;
     }

     .nav-links a {
         padding: 12px 0;
         width: 100%;
         border-bottom: 1px solid #e5e7eb;
         font-size: 14px;
     }

     .cta-btn {
         width: 100%;
         margin-top: 10px;
         padding: 10px 20px;
         font-size: 14px;
     }

     .terms-header {
         padding: 90px 4% 40px;
     }

     .terms-header h1 {
         font-size: 28px;
         line-height: 1.3;
     }

     .terms-header p {
         font-size: 14px;
     }

     .terms-container {
         padding: 30px 4%;
     }

     .terms-content h2 {
         font-size: 22px;
         margin-top: 35px;
     }

     .terms-content h3 {
         font-size: 18px;
         margin-top: 25px;
     }

     .terms-content p,
     .terms-content ul li {
         font-size: 14px;
         line-height: 1.7;
     }

     .terms-content ul {
         margin: 12px 0 12px 20px;
     }

     .terms-content ul li {
         margin-bottom: 10px;
     }

     footer {
         padding: 40px 4%;
         margin-top: 40px;
     }

     .footer-content {
         grid-template-columns: 1fr;
         gap: 25px;
     }

     .footer-section h4 {
         font-size: 16px;
     }

     .footer-section p,
     .footer-section a {
         font-size: 13px;
     }

     .footer-bottom {
         flex-direction: column;
         gap: 10px;
         text-align: center;
     }

     .footer-bottom p,
     .footer-bottom a {
         font-size: 12px;
     }
 }

 /* Small devices (landscape phones, 576px and up) */
 @media (min-width: 576px) and (max-width: 767.98px) {
     .navbar {
         padding: 5px 4%;
     }

     .logo img {
         width: 100px;
         height: 45px;
     }

     .hamburger {
         display: flex;
     }

     .nav-links {
         position: fixed;
         top: 60px;
         left: -100%;
         width: 100%;
         height: calc(100vh - 60px);
         background: white;
         flex-direction: column;
         gap: 0;
         padding: 20px;
         transition: left 0.3s ease;
         overflow-y: auto;
         box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
         align-items: stretch;
     }

     .nav-links.active {
         left: 0;
     }

     .nav-links a {
         padding: 15px 0;
         width: 100%;
         border-bottom: 1px solid #e5e7eb;
         font-size: 15px;
     }

     .cta-btn {
         width: 100%;
         margin-top: 12px;
     }

     .terms-header {
         padding: 100px 4% 45px;
     }

     .terms-header h1 {
         font-size: 32px;
     }

     .terms-header p {
         font-size: 15px;
     }

     .terms-container {
         padding: 35px 4%;
     }

     .terms-content h2 {
         font-size: 24px;
         margin-top: 40px;
     }

     .terms-content h3 {
         font-size: 19px;
         margin-top: 28px;
     }

     .terms-content p,
     .terms-content ul li {
         font-size: 15px;
     }

     .terms-content ul {
         margin: 14px 0 14px 25px;
     }

     footer {
         padding: 50px 4%;
         margin-top: 50px;
     }

     .footer-content {
         grid-template-columns: 1fr;
         gap: 30px;
     }

     .footer-bottom {
         flex-direction: column;
         gap: 12px;
     }
 }

 /* Medium devices (tablets, 768px and up) */
 @media (min-width: 768px) and (max-width: 991.98px) {
     .navbar {
         padding: 5px 4%;
     }

     .logo img {
         width: 105px;
         height: 48px;
     }

     .nav-links {
         gap: 20px;
     }

     .nav-links a {
         font-size: 14px;
     }

     .cta-btn {
         padding: 10px 20px;
         font-size: 14px;
     }

     .terms-header {
         padding: 110px 4% 50px;
     }

     .terms-header h1 {
         font-size: 38px;
     }

     .terms-header p {
         font-size: 16px;
     }

     .terms-container {
         padding: 38px 4%;
         max-width: 800px;
     }

     .terms-content h2 {
         font-size: 26px;
     }

     .terms-content h3 {
         font-size: 20px;
     }

     footer {
         padding: 55px 4%;
     }

     .footer-content {
         grid-template-columns: repeat(2, 1fr);
         gap: 35px;
     }

     .footer-bottom {
         flex-wrap: wrap;
         justify-content: center;
     }
 }

 /* Large devices (desktops, 992px and up) */
 @media (min-width: 992px) and (max-width: 1199.98px) {
     .navbar {
         padding: 5px 5%;
     }

     .nav-links {
         gap: 30px;
     }

     .nav-links a {
         font-size: 15px;
     }

     .terms-header h1 {
         font-size: 44px;
     }

     .terms-header p {
         font-size: 17px;
     }

     .terms-container {
         max-width: 850px;
     }

     .terms-content h2 {
         font-size: 27px;
     }

     .footer-content {
         grid-template-columns: repeat(2, 1fr);
         gap: 40px;
     }
 }

 /* Extra large devices (large desktops, 1200px and up) */
 @media (min-width: 1200px) and (max-width: 1399.98px) {
     .navbar {
         padding: 5px 5%;
     }

     .nav-links {
         gap: 35px;
     }

     .terms-header h1 {
         font-size: 46px;
     }

     .terms-container {
         max-width: 900px;
     }
 }

 /* Extra extra large devices (larger desktops, 1400px and up) */
 @media (min-width: 1400px) {
     .navbar {
         padding: 5px 8%;
     }

     .nav-links {
         gap: 40px;
     }

     .terms-header {
         padding: 130px 8% 70px;
     }

     .terms-header h1 {
         font-size: 52px;
     }

     .terms-header p {
         font-size: 19px;
     }

     .terms-container {
         max-width: 1000px;
         padding: 50px 8%;
     }

     .terms-content h2 {
         font-size: 30px;
     }

     .terms-content h3 {
         font-size: 22px;
     }

     .terms-content p,
     .terms-content ul li {
         font-size: 17px;
     }

     footer {
         padding: 70px 8%;
     }

     .footer-content {
         max-width: 1400px;
     }
 }