body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      background: #0a0a23;
      color: #fff;
      line-height: 1.6;
    }
	/* Hamburger styles */
	.hamburger {
	  display: none;
	  flex-direction: column;
	  cursor: pointer;
	  gap: 6px;
	  z-index: 1000;
	}
	.hamburger div {
	  width: 28px;
	  height: 3px;
	  background-color: #fff;
	  transition: all 0.4s ease;
	}
	/* Mobile navbar behavior */
	.navbar {
	  display: flex;
	  gap: 30px;
	}

    header {
      background: linear-gradient(90deg, #000428, #004e92);
      padding: 20px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: 999;
    }
    header h1 {
      font-size: 1.5rem;
      font-weight: 800;
      color: #fff;
    }
    nav a {
      margin-left: 30px;
      color: #fff;
      text-decoration: none;
      font-weight: 600;
      transition: color 0.3s;
    }
    nav a:hover {
      color: #00e6ff;
    }
    .logo-container {
      display: flex;
      align-items: center;
      gap: 15px;
    }
    .logo-wrapper {
      width: 50px;
      height: 50px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .logo {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      display: block;
    }
    .contact-hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      overflow: hidden;
    }
    .contact-hero img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      opacity: 0.4;
    }
    .contact-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 2;
    }
    .contact-success {
      background: #d4edda;
      color: #155724;
      padding: 12px;
      margin-bottom: 15px;
      border: 1px solid #c3e6cb;
      border-radius: 6px;
    }

    .contact-error {
      background: #f8d7da;
      color: #721c24;
      padding: 12px;
      margin-bottom: 15px;
      border: 1px solid #f5c6cb;
      border-radius: 6px;
    }

    .contact-content {
      position: relative;
      z-index: 3;
      min-width: 36%;
      margin-left: 60px;
      /*background: rgba(255, 255, 255, 0.05); */
      padding: 40px;
      border-radius: 12px;
      backdrop-filter: blur(10px);
    }
    form.contact-form {
      width: 95%;
    }
    .contact-content h2 {
      font-size: 2.8rem;
      margin-bottom: 30px;
      color: #fff;
    }
    .contact-form label {
      display: block;
      margin-bottom: 5px;
      font-weight: 600;
      color: #fff;
    }
    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 12px;
      margin-bottom: 20px;
      border: none;
      border-radius: 8px;
      font-size: 1rem;
      background: rgba(255,255,255,0.1);
      color: #fff;
      outline: none;
    }
    .contact-form input::placeholder,
    .contact-form textarea::placeholder {
      color: #ccc;
    }
    .contact-form button {
      background: #00e6ff;
      color: #000;
      padding: 14px 30px;
      border: none;
      border-radius: 8px;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.3s;
    }
    .contact-form button:hover {
      background: #00b8cc;
    }
    footer {
      background: linear-gradient(90deg, #000428, #004e92);
      text-align: center;
      padding: 40px 20px;
      margin-top: 0;
    }
    footer p {
      color: #ccc;
      font-size: 0.9rem;
    }
    @media (max-width: 768px) {
		.hamburger {
			display: flex;
		  }
		.navbar {
			position: fixed;
			top: 0;
			right: -100%;
			height: 100vh;
			width: 220px;
			flex-direction: column;
			align-items: start;
			padding: 80px 20px;
			gap: 20px;
			background: rgba(0,0,0,0.95);
			transition: right 0.4s ease;
		  }
		.navbar.active {
			right: 0;
		}
		header {
			justify-content: space-between;
		}

		.contact-content {
			margin: 20px;
		 }
		.contact-content h2 {
			font-size: 2rem;
		}
    }