  
    /* === Reset & Base === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', serif;
  background: #f7f6dc;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

/* === Header & Navigation === */
header.hero-nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, #007bffcc 0%, #004080cc 100%);
  backdrop-filter: blur(8px);
  border-bottom: 3px solid #ff6600;
  color: white;
  font-size: 25px;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 20px;
}

.hero-logo {
  font-size: 26px;
  font-weight: bold;
  user-select: none;
  font-family: 'Algerian', serif, cursive;
  color: white;
}

.hero-logo span {
  color: yellow;
}

.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
}

nav.hero-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  transition: max-height 0.4s ease-in-out;
}

nav.hero-links a {
  color: white;
  font-weight: bold;
  font-size: 15px;
  padding: 6px 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

nav.hero-links a:hover {
  background-color: orange;
  color: black;
}

/* === Mobile Navigation === */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  nav.hero-links {
    flex-direction: column;
    width: 100%;
    background-color: #007bff;
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    overflow: hidden;
  }

  nav.hero-links.show {
    display: flex;
    max-height: 350px;
    margin-top: 45px;
  }

  nav.hero-links a {
    padding: 12px 20px;
    border-bottom: 2px solid yellow;
    border-right: 2px solid yellow;
  }
}

/* === Section Layout === */
section {
  padding: 10px 20px;
  max-width: 800px;
  margin: 20px auto;
  background-color: white;
  border: 3px solid #007bff;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}

h1 {
  color: white;
  position: fixed;
  top: 3px;
  left: 15%;
  z-index: 1000;
}

h2 {
  color: #0056b3;
  margin-bottom: 15px;
}

p {
  line-height: 1.7;
  margin: 15px 0;
}

em {
  color: #007bff;
}

strong {
  color: orange;
}

.highlight {
  color: #007bff;
  font-weight: 600;
}

/* === Image Styling === */
.about-photo {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 10px;
  border: 3px solid #007bff;
}

/* === Contact Section === */
.contact {
  background-color: #eef1f5;
  padding: 15px;
  border-left: 5px solid orange;
  border-right: 5px solid orange;
  border-radius: 8%;
  margin-top: 30px;
}

.contact h3 {
  margin-top: 0;
  color: #007bff;
}

.contact strong {
  color: orange;
}

/* === Newsletter Section === */
#newsletter {
  padding: 15px;
  background: #eef1f5;
  color: #000;
  border-radius: 8%;
  border-left: 5px solid orange;
  border-right: 5px solid orange;
  text-align: center;
}

#newsletter h2 {
  color: orange;
}

#newsletter form {
  margin-top: 15px;
}

#newsletter input[type="email"] {
  padding: 4px;
  height: 25px;
  width: 250px;
}

/* === Responsive Newsletter === */
@media (max-width: 768px) {
  #newsletter input[type="email"] {
    width: 100%;
    padding: 15px 10px;
    margin-bottom: 10px;
  }

  #newsletter button {
    display: block;
    width: 100%;
  }
}

/* === Boxes Section === */
#boxes {
  margin-top: 20px;
}

#boxes .box {
  float: left;
  text-align: center;
  width: 30%;
  padding: 10px;
}

@media (max-width: 768px) {
  #boxes .box {
    float: none;
    width: 100%;
  }
}

/* === Rotating Text === */
#rotating-text {
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  color: orange;
  background: white;
  position: fixed;
  top: 84px;
  width: 100%;
  z-index: 1000;
}

/* === Button Styles === */
.button_1 {
  height: 38px;
  background: #007bff;
  border: none;
  padding: 0 20px;
  color: #ffffff;
  cursor: pointer;
  border-radius: 5px;
}

/* === Footer === */
footer {
  background-color: #007bff;
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 14px;
  margin-top: 0;
}