body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #fff;
}

/* STICKY HEADER */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: #0a7f2e;
}

.logo {
      height: 100px;
}

nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-weight: 500;
}

nav a:hover {
    color: #ffd6d6;
}

/* HERO */
.hero {
    height: 100vh;
    background: url("images/hero.jpg") no-repeat center center/cover;
}

.overlay {
    background: rgba(0,0,0,0.55);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

/* BUTTONS */
.btn {
    margin-top: 20px;
    padding: 12px 25px;
    background: #1db954;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

.btn:hover {
    background: #d62828;
}

.download-btn {
    padding: 10px 20px;
    background: #d62828;
    color: white;
    border-radius: 6px;
    text-decoration: none;
}

.download-btn:hover {
    background: #1db954;
}

/* SECTIONS */
.section {
    padding: 70px 20px;
    text-align: center;
}

.light {
    background: #f2fff2;
}

/* GALLERY */
.gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.gallery img {
    width: 300px;
    border-radius: 12px;
    transition: 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* PACKAGES */
.package-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.package-box {
    background: white;
    width: 280px;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-top: 6px solid #0a7f2e;
}

.package-box.popular {
    border-top: 6px solid #d62828;
    transform: scale(1.05);
}

.price {
    color: #d62828;
    font-weight: bold;
    font-size: 22px;
}

/* ANIMATION */
.fade {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.6s ease;
}

.fade.visible {
    opacity: 1;
    transform: translateY(0);
}

/* WHATSAPP */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #1db954;
    color: white;
    padding: 12px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
}

.whatsapp:hover {
    background: #d62828;
}

/* FOOTER */
footer {
    background: #0a7f2e;
    color: white;
    text-align: center;
    padding: 20px;
}
.download-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 25px;
    background: #d62828;  /* Red */
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

.download-btn:hover {
    background: #1db954;  /* Green */
}
.seo-content {
  padding: 40px;
  background-color: #ffffff;
  color: #222;
  line-height: 1.8;
}

.seo-content h1 {
  color: #1b5e20;
  margin-bottom: 20px;
}

.seo-content h2 {
  margin-top: 25px;
  color: #2e7d32;
}