:root {
  --primary-gradient: linear-gradient(135deg, #1e3c72, #2a5298);
  --button-gradient: linear-gradient(135deg, #d55a2a, #e47833);
  --card-bg: rgba(28, 40, 51, 0.8);
  --text-light: #f0f0f0;
  --footer-bg: #333333;
  --footer-text: #aaaaaa;
  --hero-bg: url('https://images.unsplash.com/photo-1506748686212-c8c7c0f6822d?auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
  --main-bg: #1a202c;
  --secondary-bg: #1c2833;
  --highlight-gradient: linear-gradient(90deg, #ff7f00, #ffbe00);
  --shadow: rgba(0, 0, 0, 0.25);
  --font-family-primary: 'Open Sans', sans-serif;
  --font-family-alt: 'Roboto', sans-serif;
}

/* Reset and base */
*, *::before, *::after {
  box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: var(--font-family-primary);
  color: var(--text-light);
  background: var(--main-bg);
  background-image: url('https://th.bing.com/th/id/R.568c9cea8ac05df969ea0a949b35ee2c?rik=IWtMHdQLMkM3Kw&pid=ImgRaw&r=0');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  font-weight: 400;
}

/* Hero Section */
.hero {
  background: var(--hero-bg);
  height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 2rem;
  position: relative;
  color: #fff;
  box-shadow: inset 0 0 80px 30px rgba(0, 0, 0, 0.65);
  transition: background 0.3s ease-in-out;
}

.hero-content {
  max-width: 700px;
  z-index: 2;
}

.hero h1 {
  font-family: var(--font-family-alt);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.85);
  margin-bottom: 2rem;
  line-height: 1.1;
  user-select: none;
}

.cta-button {
  background: var(--button-gradient);
  border: none;
  color: white;
  padding: 1.2rem 3.2rem;
  border-radius: 24px;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 18px var(--shadow);
  letter-spacing: 1.2px;
  user-select: none;
  display: inline-block;
  border: 2px solid transparent;
  font-family: var(--font-family-alt);
}

.cta-button:hover,
.cta-button:focus {
  border-color: #fff;
  transform: scale(1.1);
  box-shadow: 0 0 28px 6px rgba(255, 255, 255, 0.7);
  outline-offset: 3px;
  outline: 3px solid rgba(255 255 255 / 0.8);
}

/* Content Section */
.content {
  padding: 5rem 2rem 6rem;
  max-width: 1080px;
  margin: -6rem auto 4rem;
 background: var(--secondary-bg);
  border-radius: 20px;
  box-shadow: 0 18px 50px var(--shadow);
  color: #e6e6e6;
  text-align: center;
}

.content h2 {
  font-family: var(--font-family-alt);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 1.75rem;
  letter-spacing: 2.5px;
  background: var(--highlight-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  user-select: none;
}

.content p {
  font-size: 1.18rem;
  max-width: 820px;
  margin: 0 auto 3.5rem;
  line-height: 1.8;
  color: #dcdcdc;
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* Cards Grid */
.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  padding: 0 1rem;
  margin-top: 3.5rem;
}

.card {
  background: var(--card-bg);
  padding: 3rem 2.8rem;
  border-radius: 18px;
  box-shadow: 0 12px 40px var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  color: #f5f5f5;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: default;
  outline-offset: 3px;
}

.card:hover,
.card:focus-within {
  transform: translateY(-12px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
}

.card h3 {
  font-family: var(--font-family-alt);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  background: var(--highlight-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  user-select: none;
}

.card p {
  font-size: 1.12rem;
  line-height: 1.6;
  color: #e8e8e8;
  flex-grow: 1;
  letter-spacing: 0.01em;
}

/* Additional CTA Button */
.content > .cta-button {
  margin-top: 3rem;
  padding: 1.25rem 4rem;
  font-size: 1.3rem;
  border-radius: 30px;
  box-shadow: 0 10px 28px rgba(213, 90, 42, 0.7);
  transition: box-shadow 0.3s ease;
  font-family: var(--font-family-alt);
  font-weight: 800;
}

.content > .cta-button:hover,
.content > .cta-button:focus {
  box-shadow: 0 0 35px 6px rgba(255, 190, 0, 0.85);
  transform: scale(1.1);
  outline-offset: 4px;
  outline: 3px solid rgba(255 190 0 / 0.8);
}

/* Footer */
footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  text-align: center;
  padding: 4rem 2rem 3rem;
  border-top: 4px solid var(--primary-gradient);
  font-size: 
  }
  footer a {
  color: var(--footer-text);
  text-decoration: none;
  font-weight: bold;
  margin: 0 0.25rem;
}

footer a:hover,
footer a:focus {
  text-decoration: underline;
  outline: none;
}
}
 
.ae-header {
background-color: #111;
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 25px;
z-index: 999;
font-family: 'Roboto', sans-serif;
position: relative;
}

.ae-nav-logo {
  display: flex;
  align-items: center;
}

.ae-logo {
  max-height: 60px;
  width: auto;
}

.ae-nav-toggle {
  display: none;
  font-size: 2rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

.ae-nav-links {
  display: flex;
  gap: 25px;
}

.ae-nav-link {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.ae-nav-link:hover,
.ae-nav-link:focus {
  color: #ffb84d;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .ae-nav-toggle {
    display: block;
  }

  .ae-nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #111;
    width: 100%;
    padding: 1rem 2rem;
  }

  .ae-nav-links.active {
    display: flex;
  }

  .ae-nav-link {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    border-top: 1px solid #333;
  }
}