@import url('https://fonts.cdnfonts.com/css/noway-round');
 
 body {
            font-family: 'Noway Round', sans-serif;
            
            font-weight: 400;
            min-height: 100vh;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }
        
        .main-container {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
             font-family: 'Noway Round', sans-serif;
           
        }
        
        .navbar-brand img {
            height: 40px;
            width: auto;
        }
        
        .content-wrapper {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section {
            text-align: center;
            padding: 2rem;
            position: relative;
            z-index: 2;
        }
        
        .header-title {
            color: #6b719b;
            text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.1);
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            font-family: 'Noway Round', sans-serif;
            
            line-height: 1.2;
        }
        
        .date-badge {
            display: inline-block;
            background: linear-gradient(135deg, #007bff, #0056b3);
            border: none;
            border-radius: 50px;
            padding: 0.75rem 2rem;
            font-size: 1rem;
            font-weight: 600;
            color: white;
            margin-bottom: 2rem;
            box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
           font-family: 'Noway Round', sans-serif;
        }
        
        .action-buttons {
            margin-top: 2rem;
        }
        
        .btn-custom {
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            margin: 0.5rem;
            font-family: 'Noway Round', sans-serif;
            border: 2px solid;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-outline-primary {
            color: #007bff;
            border-color: #007bff;
            background: transparent;
        }
        
        .btn-outline-primary:hover {
            background: #007bff;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 123, 255, 0.4);
        }
        
        .btn-primary {
            background: linear-gradient(135deg, #007bff, #0056b3);
            border-color: #007bff;
            color: white;
        }
        
        .btn-primary:hover {
            background: linear-gradient(135deg, #0056b3, #004085);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 123, 255, 0.4);
        }
        
        .hero-image {
            margin-top: 3rem;
        }
        
        .hero-image img {
            max-width: 100%;
            height: auto;
            max-height: 400px;
        }
        
        .footer {
            background: rgba(248, 249, 250, 0.95);
           
            border-top: 1px solid rgba(233, 236, 239, 0.5);
            margin-top: auto;
        }
        
        /* Particles background */
        #particles-js {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .header-title {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 768px) {
            .header-title {
                font-size: 2.5rem;
            }
            
            .btn-custom {
                display: block;
                width: 100%;
                max-width: 280px;
                margin: 0.5rem auto;
            }
            
            .date-badge {
                font-size: 0.9rem;
                padding: 0.6rem 1.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero-section {
                padding: 1rem;
            }
            
            .header-title {
                font-size: 2rem;
            }
            
            .btn-custom {
                padding: 0.8rem 2rem;
                font-size: 1rem;
            }
        }
        
  .footer {
    color: var(--default-color);
    background-color: #84c1ec;
    font-size: 14px;
    padding-bottom: 15px;
    position: relative;
    text-align: center;
  } 

  .footer .footer-top {
    padding-top: 30px;
  }


  .footer h4 {
    font-size: 14px;
    font-weight: bold;
    position: relative;
    padding-bottom: 8px;
  }

  .footer .footer-links {
    margin-bottom: 15px;
  }

  .footer .footer-links ul {
    list-style: none;
    font-weight: bold;
    padding: 0;
    margin: 0;
  }

  .footer .footer-links ul i {
    margin-right: 3px;
    font-weight: bold;
    font-size:14px;
    line-height: 0;
    color: #000000;
  }

  .footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
  }

  .footer .footer-links ul li:first-child {
    padding-top: 0;
  }

  .footer .footer-links ul a {
    display: inline-block;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 0.6;
  }

  .footer .footer-links ul a:hover {
    color: #000328;
    font-size: 1rem;
    font-weight: bold;
    
  }