:root {
  --light-blue: #d9e6f2;
  --soft-blue: #a3b9d1;
  --mid-blue: #6e88af;
  --primary-blue: #4b6b91;
  --dark-blue: #2f4b6f;
  --orange-gradient: linear-gradient(to right, #d55a2a, #e47833);
  --card-bg: rgba(255, 255, 255, 0.08);
}

html {
  scroll-behavior: smooth;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: var(--dark-blue);
  color: var(--light-blue);
  line-height: 1.6;
  overflow-x: hidden;
}

.hero {
  background: url('https://images.hdqwalls.com/wallpapers/landscape-alpine-mountains-landscape-5k-1k.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  background-attachment: fixed;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(15, 28, 46, 0.6);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  animation: fadeIn 2s ease-out;
}

.hero h1 {
  font-size: 3rem;
  color: var(--light-blue);
  font-weight: 700;
  text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.5);
}

.cta-button {
  background: var(--orange-gradient);
  border: none;
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  margin-top: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover {
  opacity: 0.95;
  box-shadow: 0 0 15px rgba(229, 120, 51, 0.8), 0 0 30px rgba(229, 120, 51, 0.6);
  transform: scale(1.05);
}

.cta-button:focus {
  outline: 3px solid rgba(229, 120, 51, 0.7);
  outline-offset: 3px;
}

section.content {
  background-color: rgba(28, 40, 51, 1);
  padding: 4rem 2rem;
  text-align: center;
}

.content h2 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  color: var(--light-blue);
}

.content p {
  font-size: 1.1rem;
  color: var(--soft-blue);
  margin-bottom: 3rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.card-container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 12px;
  max-width: 300px;
  width: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--light-blue);
}

.card p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: var(--soft-blue);
}

.card a.cta-button {
  display: inline-block;
  text-align: center;
  width: 100%;
  text-decoration: none;
}

footer {
  background: #1a1a1a;
  color: var(--soft-blue);
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 0;
}

footer p {
  font-size: 0.9rem;
}

footer a {
  color: var(--soft-blue);
  text-decoration: none;
  font-weight: bold;
}

footer a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .card-container {
    flex-direction: column;
    align-items: center;
  }

  .card {
    max-width: 90%;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}