* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #05070c;
  color: white;
}

.navbar {
  min-height: 90px;
  background: #050505;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 55px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.logo-wrap h1 {
  font-size: 26px;
}

.logo-wrap p {
  color: #f4bd3f;
  font-size: 11px;
}

nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}

.nav-btn,
.gold-btn {
  background: linear-gradient(#ffd66b, #f2a91f);
  color: black;
  padding: 17px 34px;
  border-radius: 3px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
}

.hero {
  min-height: 460px;
  background: linear-gradient(rgba(2, 10, 25, 0.75), rgba(2, 10, 25, 0.75)),
    url("images/hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding-left: 58px;
}

.hero h2 {
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: 5px;
}

.hero h2 span {
  color: #f4bd3f;
}

.gold-line,
.section-line {
  width: 55px;
  height: 4px;
  background: #f4bd3f;
  margin: 18px 0;
}

.hero p {
  font-size: 22px;
  line-height: 1.4;
}

.hero-buttons,
.event-buttons {
  margin-top: 28px;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.outline-btn {
  border: 2px solid #f4bd3f;
  color: #f4bd3f;
  padding: 15px 34px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

.about-section {
  background: #f4f4f4;
  color: #071229;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 50px;
  padding: 45px 90px;
  align-items: center;
}

.about-text h2,
.network-section h2 {
  font-size: 30px;
  letter-spacing: 1px;
}

.about-text p {
  font-size: 17px;
  line-height: 1.45;
  max-width: 360px;
}

.about-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.pillars-section {
  background: #07090d;
  padding: 30px 90px 38px;
  text-align: center;
}

.pillars-section h2 {
  font-size: 30px;
  margin-bottom: 25px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.pillar-card {
  display: flex;
  align-items: center;
  gap: 22px;
  text-align: left;
  border-right: 1px solid #555;
  padding-right: 30px;
}

.pillar-card:last-child {
  border-right: none;
}

.pillar-card img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex-shrink: 0;
}

.pillar-card h3 {
  color: #f4bd3f;
  font-size: 22px;
}

.pillar-card p {
  line-height: 1.45;
}

.event-section {
  min-height: 300px;
  background: linear-gradient(rgba(2, 10, 25, 0.75), rgba(2, 10, 25, 0.75)),
    url("images/event.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 35px 90px;
  display: flex;
  align-items: center;
}

.event-content h2 {
  color: #f4bd3f;
  font-size: 34px;
}

.event-content h3 {
  font-size: 25px;
  line-height: 1.25;
  margin: 8px 0;
}

.event-content p {
  font-size: 18px;
}

.network-section {
  background: #f4f4f4;
  color: #071229;
  text-align: center;
  padding: 35px 70px;
}

.center {
  margin: 15px auto 30px;
}

.network-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.network-card {
  padding: 0 30px;
  border-right: 1px solid #aaa;
}

.network-card:last-child {
  border-right: none;
}

.network-card img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin-bottom: 10px;
}

.network-card h3 {
  font-size: 17px;
}

.network-card p {
  font-size: 15px;
  line-height: 1.4;
}

.contact-section {
  background: #08090d;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 45px;
  padding: 35px 90px;
}

.contact-info h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

.contact-info p {
  margin: 16px 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

input,
textarea {
  width: 100%;
  background: #1b1d23;
  border: 1px solid #333;
  padding: 16px;
  color: white;
}

textarea {
  height: 90px;
  margin-top: 12px;
  resize: vertical;
}

button {
  margin-top: 12px;
  background: linear-gradient(#ffd66b, #f2a91f);
  border: none;
  padding: 15px 55px;
  font-weight: bold;
  cursor: pointer;
}

footer {
  background: #030303;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 90px;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

footer a {
  color: white;
  text-decoration: none;
}

@media (max-width: 900px) {
  .navbar,
  nav,
  .about-section,
  .pillars-grid,
  .network-grid,
  .contact-section,
  footer {
    display: block;
  }

  .navbar {
    height: auto;
    padding: 20px;
  }

  nav {
    margin-top: 20px;
  }

  nav a {
    display: block;
    margin: 15px 0;
  }

  .hero,
  .about-section,
  .pillars-section,
  .event-section,
  .network-section,
  .contact-section,
  footer {
    padding: 35px 25px;
  }

  .hero {
    min-height: 430px;
  }

  .hero h2 {
    font-size: 38px;
  }

  .about-image img {
    margin-top: 25px;
  }

  .pillar-card,
  .network-card {
    border-right: none;
    padding: 20px 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}