/* FULL PAGE BACKGROUND */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #0e0e0e;
  color: white;
}

/* OUTER WRAPPER */
.page {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 40px;
}

/* MAIN CONTENT COLUMN */
.main {
  width: 1200px;
  max-width: calc(100% - 40px);
  background: #1a1a1a;
  min-height: 100vh;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;

  border-bottom: 1px solid #333;

  padding: 30px 20px;   /* 👈 makes header taller */
  margin-bottom: 30px;

  background: rgba(255,255,255,0.02);
  border-radius: 6px;
}

/* BRAND AREA */
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand h1 {
  margin: 0;
  font-size: 2.3rem;   /* 👈 bigger title */
  white-space: nowrap;
}

/* LOGO */
.logo {
  width: 55px;         /* 👈 bigger logo */
  height: 55px;
  object-fit: contain;
}

/* NAVIGATION */
.nav-menu {
  display: flex;
  gap: 35px;           /* 👈 more spacing between links */
  align-items: center;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-size: 1.8rem;   /* 👈 bigger nav text */
  font-weight: 500;
}

.nav-menu a:hover {
  color: #4da6ff;
}
                                  /* HERO SECTION */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 60px;                /* 👈 more space between text and image */
  
  padding: 40px 20px;      /* 👈 pushes content inward from edges */
  
  margin-bottom: 40px;
  min-height: 380px;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-text h2 {
  margin: 0 0 20px 0;
  font-size: 3rem;
  color: white;
}

.hero-text p {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.6;
  color: #e0e0e0;
  max-width: 500px;
}

.hero-image {
  width: 480px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}
/* BUTTON SECTION */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin: 70px 0;
}

/* EACH BUTTON BLOCK */
.cta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

/* TEXT ABOVE BUTTON */
.cta-item p {
  margin: 0;
  font-size: 1.5rem;
  color: #ccc;
}

/* BASE BUTTON STYLE */
.btn {
  width: 220px;            /* 👈 forces same width */
  height: 70px;            /* 👈 forces same height */
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.3rem;
  font-weight: bold;
  text-decoration: none;

  border-radius: 12px;
  transition: all 0.2s ease;
}

/* COLORS */
.btn-blue {
  background: #2d5aa3;
  color: white;
}

.btn-green {
  background: #3c7d3c;
  color: white;
}

.btn-red {
  background: #a33c3c;
  color: white;
}

/* HOVER EFFECT */
.btn:hover {
  transform: translateY(-4px);
  opacity: 0.9;
}

.section-divider {
  border: none;
  border-top: 1px solid #333;
  margin: 60px 0;
  width: 100%;
}
