/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f7f9fc;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===================== HEADER ===================== */
header {
  background-color: #004aad;
  padding: 15px 0;
  color: white;
  position: sticky;
  top: 0;
  z-index: 999;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  display: flex;
  gap: 10px;
  align-items: center;
}
.logo img{
  width: 15%;
  height: 35px;
  border-radius: 25px;
}

nav {
  position: relative;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffd966;
}


/* Header Buttons */
.btn-primary {
  background-color: #ffd966;
  color: #004aad;
  border-radius: 30px;
  padding: 12px 28px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.btn-primary:hover {
  background-color: #ffc107;
}

/* ===================== HAMBURGER MENU ===================== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  order: 2;
  margin-left: auto;
}

.hamburger:focus {
  outline: none;
}

.hamburger .bar {
  width: 100%;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  margin-left: 25px;
}

/* MAIN SECTION */
.create-account-page {
  padding: 60px 0 80px;
  text-align: center;
}

.create-account-page h1 {
  font-size: 2.8rem;
  color: #004aad;
  margin-bottom: 15px;
}

.intro-text {
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #555;
}

.account-options {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.account-card {
  background: white;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  width: 320px;
  text-align: left;
  transition: transform 0.3s ease;
}

.account-card:hover {
  transform: translateY(-8px);
}

.account-card h2 {
  color: #004aad;
  font-size: 1.6rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.account-card ul {
  list-style: disc inside;
  margin-bottom: 30px;
  color: #555;
  font-size: 1rem;
}

.account-card a.btn-primary {
  display: inline-block;
  background-color: #004aad;
  color: #ffd966;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 30px;
  text-align: center;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.account-card a.btn-primary:hover {
  background-color: #002f6c;
}

/* FOOTER */
footer {
  background-color: #222;
  color: #eee; 
  padding: 30px 20px; 
  font-family: Arial, sans-serif;
  text-align: center;
  margin-top: 60px;
}

.footer {
  max-width: 1200px; 
  margin: auto; 
  display: flex; 
  flex-wrap: wrap; 
  justify-content: space-between;
}

.footer-head {
  color: #fff; 
  margin-bottom: 10px;
}

.contacts {
  flex: 1; 
  min-width: 200px; 
  margin-bottom: 20px;
}

.footer-content a {
  color: #ffd966;
  text-decoration: none;
}

.footer-content a:hover {
  text-decoration: underline;
}

.contact-info {
  margin-bottom: 10px;
}

.social-icons a {
  margin: 0 12px;
  font-size: 1.4rem;
  color: white;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ffd966;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  nav {
    width: 100%;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: #004aad;
    flex-direction: column;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
    width: 100%;
    order: 3;
  }

  .nav-links.open {
    max-height: 300px;
  }

  .nav-links a {
    margin: 15px 0;
    padding: 10px 20px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-text {
    font-size: 1rem;
    padding: 0 10px;
  }

  .hero-buttons a {
    margin: 8px 0;
    width: 80%;
    max-width: 300px;
    text-align: center;
    text-decoration: none;
  }

  .feature-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .search-info {
    font-size: 1rem;
    padding: 30px 15px;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.5rem;
  }

  nav a {
    font-size: 1rem;
  }

  .hero h1 {
    font-size: 2.4rem;
  }
}
