/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-blue: #72b1ff;
  --dark-slate: #2c3e50;
  --light-gray: #f8f9fa;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-slate);
  background-color: var(--light-gray);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Clean Header Design */
.navbar {
  background: linear-gradient(90deg, var(--primary-blue), var(--dark-slate));
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.8rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-logo h2 {
  color: white;
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
  margin: 0;
}

.nav-link {
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.6rem 1.2rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border: 2px solid transparent;
  white-space: nowrap;
  position: relative;
}

.nav-link:hover {
  color: white;
  opacity: 0.9;
}

.nav-link.active {
  color: white;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: white;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 70%;
}

.nav-link.active::after {
  width: 70%;
  background-color: white;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hamburger Active State */
.hamburger.active .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Cubic Button Styles */
.btn {
  padding: 15px 30px;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--primary-blue);
  color: white;
  border-color: var(--primary-blue);
}

.btn-primary:hover {
  background: var(--dark-slate);
  border-color: var(--dark-slate);
}

.btn-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-secondary:hover {
  background: white;
  color: var(--dark-slate);
}

.btn-outline {
  background: transparent;
  color: var(--primary-blue);
  border-color: var(--primary-blue);
}

.btn-outline:hover {
  background: var(--primary-blue);
  color: white;
}

/* Page Header */
.page-header {
  background: linear-gradient(90deg, var(--primary-blue), var(--dark-slate));
  color: white;
  padding: 110px 0 70px;
  text-align: center;
  margin-top: 70px;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Cubic Sections */
section {
  padding: 80px 0;
}

/* CTA Section */
.cta {
  background: linear-gradient(90deg, var(--dark-slate), var(--primary-blue));
  color: white;
  text-align: center;
  padding: 80px 0;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Modern Footer */
footer {
  background: var(--dark-slate);
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-blue);
}

.footer-section i {
  margin-right: 0.5rem;
  color: var(--primary-blue);
}

.footer-bottom {
  border-top: 2px solid var(--primary-blue);
  padding-top: 1rem;
  text-align: center;
  color: var(--light-gray);
}

/* Legal Documents */
.legal-document {
  background: white;
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #000;
}

.legal-document h2 {
  color: #000;
  margin: 2rem 0 1rem;
  font-size: 1.2rem;
  font-weight: bold;
}

.legal-document p {
  margin-bottom: 1rem;
}

.legal-document ul {
  margin: 1rem 0 1rem 2rem;
}

.legal-document li {
  margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-menu {
    gap: 1rem;
  }

  .nav-link {
    font-size: 0.85rem;
    padding: 0.5rem 0.8rem;
  }

  .nav-logo h2 {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: linear-gradient(180deg, var(--primary-blue), var(--dark-slate));
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem 0;
    gap: 1.5rem;
    height: calc(100vh - 70px);
    overflow-y: auto;
  }

  .nav-menu.active {
    left: 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  }

  .nav-link {
    margin: 0.5rem auto;
    padding: 1rem;
    width: 80%;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .nav-link:hover::after,
  .nav-link.active::after {
    width: 50%;
  }

  .nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
  }

  .nav-logo h2 {
    font-size: 1.2rem;
    letter-spacing: 1px;
  }

  .page-header h1 {
    font-size: 2.2rem;
  }

  .container {
    padding: 0 15px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
