/* Global Styles */
    :root {
      --primary: #FF6B35;
      --secondary: #004E89;
      --accent: #FFD166;
      --light: rgba(255, 255, 255, 0.9);
      --dark: #1A1A1D;
      --warning: #dc3545;
      --warning-bg: rgba(220, 53, 69, 0.1);
      --transition: all 0.3s ease;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--light);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      line-height: 1.6;
      min-height: 100vh;
      position: relative;
      display: flex;
      flex-direction: column;
    }

    /* Background solution - only your image */
    .background-container {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url("images/background-PARMISA.jpg") no-repeat center center;
      background-size: cover;
      z-index: -2;
    }

    .background-container::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.7);
      z-index: -1;
    }

    .security-warning {
      background: var(--warning-bg);
      border: 2px solid var(--warning);
      border-radius: 8px;
      padding: 1rem;
      margin: 1rem 2rem;
      position: relative;
      z-index: 15;
      backdrop-filter: blur(10px);
      animation: fadeIn 0.5s ease-in-out;
    }

    .warning-content {
      display: flex;
      align-items: flex-start;
      gap: 0.8rem;
    }

    .warning-icon {
      color: var(--warning);
      font-size: 1.5rem;
      font-weight: bold;
      flex-shrink: 0;
      margin-top: 0.1rem;
    }

    .warning-text {
      flex: 1;
    }

    .warning-text h3 {
      color: var(--warning);
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      font-family: 'Montserrat', sans-serif;
    }

    .warning-text p {
      color: var(--light);
      font-size: 0.95rem;
      line-height: 1.4;
      margin-bottom: 0.5rem;
    }

    .official-site {
      color: var(--accent);
      font-weight: 600;
      text-decoration: underline;
    }

    .dismiss-btn {
      position: absolute;
      top: 0.5rem;
      right: 0.8rem;
      background: none;
      border: none;
      color: var(--warning);
      font-size: 1.2rem;
      cursor: pointer;
      padding: 0.2rem;
      opacity: 0.7;
      transition: var(--transition);
    }

    .dismiss-btn:hover {
      opacity: 1;
      transform: scale(1.1);
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Navbar styles */
    .navbar {
      position: relative;
      z-index: 10;
      padding: 1.5rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .navbar-brand {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--light);
      text-decoration: none;
      letter-spacing: 1px;
      position: relative;
    }

    .navbar-brand span {
      color: var(--primary);
    }

    .navbar-brand::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 100%;
      height: 3px;
      background: var(--primary);
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 0.4s ease;
    }

    .navbar-brand:hover::after {
      transform: scaleX(1);
      transform-origin: left;
    }

    #menuToggle {
      display: none;
      background: none;
      border: none;
      color: var(--light);
      font-size: 1.8rem;
      cursor: pointer;
      padding: 0.5rem;
    }

    nav {
      display: flex;
      gap: 2rem;
    }

    nav a {
      color: var(--light);
      text-decoration: none;
      font-weight: 500;
      transition: var(--transition);
    }

    nav a:hover {
      color: var(--primary);
    }

    .hero {
      min-height: 80vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 0 2rem;
    }

    .hero h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
      color: var(--light);
    }

    .hero h1 span {
      color: var(--primary);
    }

    .hero p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      max-width: 600px;
    }

    .btn {
      display: inline-block;
      padding: 0.8rem 2rem;
      margin: 0.5rem;
      background: var(--primary);
      color: #fff;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      transition: var(--transition);
    }

    .btn:hover {
      background: #e05c28;
    }

    footer {
      text-align: center;
      padding: 1rem;
      font-size: 0.9rem;
      opacity: 0.6;
    }

    /* Mobile responsiveness */
    @media (max-width: 768px) {
      .security-warning {
        margin: 1rem;
      }

      .warning-content {
        flex-direction: column;
        text-align: center;
      }

      .warning-icon {
        align-self: center;
      }

      .navbar {
        flex-direction: column;
        align-items: flex-start;
      }

      #menuToggle {
        display: block;
        position: absolute;
        top: 1.5rem;
        right: 2rem;
      }

      nav {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 1rem;
        gap: 0;
      }

      nav.active {
        display: flex;
      }

      nav a {
        margin: 0.5rem 0;
        padding: 0.5rem 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }

      nav a:last-child {
        border-bottom: none;
      }

      .hero {
        min-height: 70vh;
        padding: 0 1rem;
      }

      .hero h1 {
        font-size: 2.2rem;
      }

      .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
      }

      .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
        margin: 0.3rem;
      }
    }

    @media (max-width: 480px) {
      .security-warning {
        margin: 0.5rem;
        padding: 0.8rem;
      }

      .warning-text h3 {
        font-size: 1rem;
      }

      .warning-text p {
        font-size: 0.85rem;
      }

      .navbar {
        padding: 1rem;
      }

      .navbar-brand {
        font-size: 1.5rem;
      }

      #menuToggle {
        top: 1rem;
        right: 1rem;
      }

      .hero h1 {
        font-size: 1.8rem;
      }

      .hero p {
        font-size: 0.9rem;
      }

      .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
        display: block;
        margin: 0.5rem 0;
        text-align: center;
      }
    }
