body {
      margin: 0;
      font-family: Arial, sans-serif;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
      background-color: #0026ff42;
    } 

    .video-bg {
      position: fixed;
      top: 0;
      left: 0;
      min-width: 100vw;
      min-height: 100vh;
      width: 100vw;
      height: 100vh;
      object-fit: cover;
      z-index: -1;
      opacity: 0.6;
      pointer-events: none;
    }

    .navbar {
    
background-color: #333;
      overflow: hidden;
      width: 100%;
    }

    .navbar ul {
      list-style-type: none;
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: center;
    }

    .navbar li {
      margin: 0;
    }

    .navbar a {
      display: block;
      color: rgb(255, 255, 255);
      font-weight: bold;
      font-size: 1.2rem;
      text-align: center;
      padding: 16px 28px;
      text-decoration: none;
      letter-spacing: 1px;
      transition: background 0.2s;
    }

    .navbar a:hover {
      background-color: #575757;
    }

    main {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .center-row {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: flex-start;
      width: 100%;
      max-width: 800px;
      margin-top: 40px;
      margin-bottom: 40px;
    }

    .circle-video {
      width: 200px;
      height: 200px;
      border-radius: 50%;
      overflow: hidden;
      background: #000000;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 48px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.08);
      flex-shrink: 0;
    }

    .circle-video img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-radius: 50%;
    }

    .center-content {
      text-align: left;
      width: 100%;
      max-width: 400px;
      margin-left: 60px;
    }

    .center-content h1 {
      font-size: 2.2rem;
      font-weight: bold;
      margin-bottom: 12px;
      color: #000000;
    }

    .center-content hr {
      width: 120px;
      border: 2px solid #000000;
      margin: 0 0 18px 0;
      opacity: 0.7;
    }

    .center-content .age {
      font-size: 1.15rem;
      color: #000000;
      margin-bottom: 8px;
      font-weight: 500;
    }

    .center-content .subtitle {
      font-size: 1.1rem;
      color: #000000;
      font-weight: bold;
      margin-bottom: 0;
    }

    .center-content .link-row {
      margin-top: 18px;
      display: flex;
      gap: 18px;
      align-items: center;
    }

    .center-content .link-row a {
      color: #6c3483;
      font-weight: bold;
      text-decoration: underline;
      transition: color 0.2s;
      font-size: 1rem;
    }

    .center-content .link-row a:hover {
      color: #23235b;
    }
    footer {
      width: 100%;
      background: #333;
      color: #fff;
      text-align: center;
      padding: 18px 0 10px 0;
      margin-top: auto;
      box-shadow: 0 -2px 16px rgba(0,0,0,0.08);
    }

    .footer-links {
      margin-bottom: 8px;
    }

    .footer-links a {
      margin: 0 12px;
      color: #fff;
      transition: color 0.2s;
      vertical-align: middle;
      display: inline-block;
    }

    .footer-links a:hover {
      color: #a78bfa;
    }

    .footer-copy {
      font-size: 1rem;
      opacity: 0.85;
    }

    @media (max-width: 900px) {
      .center-row {
        flex-direction: column;
        align-items: center;
        max-width: 95vw;
      }
      .circle-video {
        margin-right: 0;
        margin-bottom: 24px;
      }
      .center-content {
        max-width: 95vw;
        margin-left: 0;
      }

      

  }

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
  color: #1f2937;
}

.contact-section {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  padding: 2.5rem 3rem;
  max-width: 600px;
  margin: 4rem auto;
  animation: fadeInUp 0.8s ease;
}

.contact-section h2 {
  text-align: center;
  color: #1e3a8a;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.contact-section p {
  text-align: center;
  color: #4b5563;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #374151;
}

input,
textarea {
  width: 100%;
  padding: 0.9rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.6rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  background-color: #f9fafb;
}

input:focus,
textarea:focus {
  border-color: #2563eb;
  background-color: #fff;
  box-shadow: 0 0 8px rgba(37, 99, 235, 0.2);
  outline: none;
}
button {
  width: 100%;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  border: none;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.6rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.3s;
}
button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(37, 99, 235, 0.3);
}
footer {
  text-align: center;
  margin-top: 3rem;
  padding: 1rem;
  color: #6b7280;
  font-size: 0.9rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
html, body {
  height: auto;
  overflow-y: auto;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
