/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
.header {
  background-color: #0d6efd;
  padding: 20px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: #fff;
  font-size: 24px;
}

.btn-outline {
  background: #fff;
  color: #000;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
}

/* About Section */
.about-section {
  padding: 80px 0;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Image */
.about-image img {
  width: 320px;
  height: auto;
  border-radius: 20px;
  border: 2px solid #ddd;
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}

/* Text */
.about-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #333;
}

/* Button */
.btn-primary {
  display: inline-block;
  margin-top: 20px;
  background-color: #0d6efd;
  color: #fff;
  padding: 12px 22px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    width: 260px;
  }
}

/* =========================
   STICKY HEADER
   ========================= */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
}
