:root {
  --green: #143D60;
  --light-green: #DDEB9D;
  --pink: #EB5B00;
  --light-pink: #DDEB9D;
  --purple: #A0C878;
  --light-purple: #F0F7E8;
  --yellow: #EB5B00;
  --light-yellow: #FFF5F2;
  --white: #ffffff;
  --text: #143D60;
  --light-text: #143D60;
  --border-radius: 12px;
  --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

.background-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.shape {
  position: absolute;
  border-radius: 50%;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background-color: var(--light-pink);
  top: -100px;
  left: -100px;
  z-index: -1;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background-color: var(--light-green);
  top: 400px;
  right: -50px;
  z-index: -1;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background-color: var(--light-purple);
  bottom: 200px;
  left: -50px;
  z-index: -1;
  border-radius: 30%;
}

.shape-4 {
  width: 100px;
  height: 100px;
  background-color: var(--light-yellow);
  bottom: 400px;
  right: 100px;
  z-index: -1;
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

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

ul {
  list-style: none;
}

/* Header & Navigation */
header {
  padding: 20px 5%;
  background-color: var(--white);
  position: relative;
}

header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  margin: 0;
  height: 100%;
}

.logo a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo h1 {
  color: var(--green);
  font-size: 30px;
  text-align: left;
  margin: 0;
  line-height: 1.1;
  display: flex;
  align-items: center;
  height: 100%;
}

.logo .tagline-main {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #CC4444;
  margin: 6px 0 0 10px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.logo .tagline-sub {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #143D60;
  margin: 2px 0 0 12px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.logo .tagline-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 12px;
  color: #6b5b95;
  margin: 6px 0 0 14px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0.01em;
}

@media (max-width: 600px) {
  .logo h1 {
    font-size: 24px;
  }
  .logo .tagline-main {
    font-size: 15px;
    margin-left: 6px;
  }
  .logo .tagline-sub {
    font-size: 12px;
    margin-left: 8px;
  }
  .logo .tagline-quote {
    font-size: 11px;
    margin-left: 10px;
  }
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.85rem;
  color: #143D60;
  transition: color 0.3s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: #EB5B00;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--green);
}

/* Dropdown Navigation Styles */
.nav-item {
  position: relative;
  display: inline-block;
}

.nav-item > a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 180px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
  margin-top: 10px;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: #143D60;
  font-weight: 400;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  border-bottom: none !important;
}

.dropdown-menu a:hover {
  background-color: var(--light-green);
  color: #EB5B00;
}

.dropdown-menu a.active {
  background-color: var(--light-green);
  color: #EB5B00;
}

.dropdown-menu a.active::after {
  display: none;
}

.mobile-toggle {
  display: none;
  z-index: 1101;
  position: relative;
  margin: 0;
  height: 40px;
  width: 40px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
}

.mobile-toggle i {
  width: 24px;
  height: 24px;
  color: var(--green);
}

@media (max-width: 1200px) {
  .mobile-toggle {
    display: flex;
  }
  
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 240px;
    height: 100vh;
    background: var(--white);
    box-shadow: 2px 0 16px rgba(0,0,0,0.08);
    padding: 80px 30px 30px 30px;
    transition: transform 0.3s cubic-bezier(.4,0,.2,1);
    z-index: 1100;
    border-radius: 0 0 0 0;
    transform: translateX(-100%);
    visibility: hidden;
  }
  
  .nav-links.active {
    transform: translateX(0);
    visibility: visible;
  }
  
  .nav-item {
    width: 100%;
    position: relative;
  }
  
  .nav-item > a {
    width: 100%;
    text-align: left;
    padding: 18px 0;
    font-size: 1rem;
    border-bottom: 1px solid #eee;
    color: #143D60;
    justify-content: space-between;
  }
  
  .nav-item:last-child > a {
    border-bottom: none;
  }
  
  .nav-item > a.active {
    color: #EB5B00;
  }
  
  /* Mobile dropdown styles */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: var(--light-green);
    margin: 0;
    border-radius: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .nav-item.mobile-open .dropdown-menu {
    max-height: 200px;
  }
  
  .dropdown-menu a {
    padding: 12px 20px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  .dropdown-menu a:last-child {
    border-bottom: none;
  }
  
  .nav-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.18);
    z-index: 1099;
  }
  
  .nav-overlay.active {
    display: block;
  }
}

@media (min-width: 1201px) {
  .mobile-toggle {
    display: none !important;
  }
  
  .nav-links {
    position: static !important;
    flex-direction: row !important;
    height: auto !important;
    width: auto !important;
    background: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    gap: 30px !important;
    display: flex !important;
    align-items: center !important;
    transform: none !important;
    visibility: visible !important;
  }
  
  .nav-overlay {
    display: none !important;
  }
}

.auth-buttons {
  display: flex;
  gap: 15px;
}

.sign-in {
  padding: 8px 16px;
  color: var(--green);
  font-weight: 500;
}

.sign-up {
  padding: 8px 16px;
  background-color: var(--green);
  color: white;
  border-radius: 20px;
  font-weight: 500;
  transition: background-color 0.3s;
}

.sign-up:hover {
  background-color: #2c5347;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  padding: 60px 5%;
  background-color: var(--light-green);
  border-radius: 0 0 0 100px;
  overflow: hidden;
}

.hero-content {
  flex: 1;
  padding-right: 40px;
}

.hero-content h2 {
  font-size: 42px;
  line-height: 1.2;
  color: var(--green);
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 500px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--white);
  color: var(--green);
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.btn:hover {
  background-color: var(--green);
  color: white;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

/* Cards Section */
.cards-section {
  display: flex;
  justify-content: space-between;
  padding: 60px 5%;
  gap: 30px;
}

.card {
  flex: 1;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  display: flex;
  flex-direction: column;
}

.card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: white;
}

.card p {
  margin-bottom: 30px;
  flex-grow: 1;
  color: rgba(255, 255, 255, 0.9);
}

.card .btn {
  align-self: flex-start;
  background-color: white;
}

.card-purple {
  background-color: var(--purple);
}

.card-purple .btn {
  color: var(--purple);
}

.card-purple .btn:hover {
  background-color: var(--purple);
  color: white;
  border-color: white;
}

.card-green {
  background-color: var(--green);
}

.card-green .btn {
  color: var(--green);
}

.card-green .btn:hover {
  background-color: var(--green);
  color: white;
  border-color: white;
}

.card-pink {
  background-color: var(--pink);
}

.card-pink .btn {
  color: var(--pink);
}

.card-pink .btn:hover {
  background-color: var(--pink);
  color: white;
  border-color: white;
}

/* Colored Heading Section */
.colored-heading-section {
  text-align: center;
  padding: 80px 5%;
  max-width: 800px;
  margin: 0 auto;
}

.colored-heading-section h2 {
  font-size: 38px;
  margin-bottom: 20px;
  color: var(--green);
}

.colored-heading-section p {
  font-size: 18px;
  color: var(--light-text);
  max-width: 600px;
  margin: 0 auto;
}

.purple {
  color: var(--purple);
}

.yellow {
  color: #d4b63c;
}

.green {
  color: var(--green);
}

/* App Preview Section */
.app-preview {
  padding: 40px 5%;
  display: flex;
  justify-content: center;
  position: relative;
  margin-bottom: 60px;
}

.browser-mockup {
  width: 80%;
  max-width: 900px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  overflow: hidden;
  background: white;
  z-index: 1;
}

.browser-controls {
  display: flex;
  align-items: center;
  background-color: #f1f1f1;
  padding: 10px 15px;
  border-radius: 10px 10px 0 0;
}

.browser-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 6px;
}

.browser-dot:nth-child(1) {
  background-color: #ff5f57;
}

.browser-dot:nth-child(2) {
  background-color: #ffbd2e;
}

.browser-dot:nth-child(3) {
  background-color: #28ca41;
}

.browser-address {
  margin-left: 10px;
  background-color: white;
  border-radius: 15px;
  padding: 5px 15px;
  font-size: 14px;
  color: var(--light-text);
  flex-grow: 1;
  text-align: center;
}

.browser-content {
  padding: 20px;
}

.app-image img {
  width: 100%;
  border-radius: 5px;
}

.shapes-container {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.shape-pentagon {
  position: absolute;
  width: 80px;
  height: 80px;
  background-color: var(--light-yellow);
  bottom: -20px;
  right: 15%;
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

.shape-circle {
  position: absolute;
  width: 120px;
  height: 120px;
  background-color: var(--light-purple);
  bottom: 30px;
  left: 10%;
  border-radius: 50%;
}

.shape-leaf {
  position: absolute;
  width: 150px;
  height: 150px;
  background-color: var(--light-green);
  top: 20px;
  left: 5%;
  border-radius: 0 50% 50% 50%;
  transform: rotate(45deg);
}

/* Flexible Solutions Section */
.flexible-solutions {
  display: flex;
  align-items: center;
  padding: 80px 5%;
  gap: 60px;
  background-color: var(--white);
  position: relative;
  z-index: 1;
}

.solutions-image {
  flex: 1;
}

.solutions-image img {
  max-width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.solutions-content {
  flex: 1;
  position: relative;
}

.plant-icon {
  margin-bottom: 20px;
}

.plant,
.icon {
  width: 40px;
  height: 40px;
  color: var(--green);
}

.solutions-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--green);
}

.solutions-content p {
  font-size: 18px;
  color: var(--light-text);
}

/* Features Section */
.features-section {
  display: flex;
  justify-content: space-between;
  padding: 60px 5%;
  gap: 30px;
  background-color: var(--light-green);
  border-radius: 100px 0 0 0;
  margin-top: 60px;
}

.feature {
  flex: 1;
  padding: 30px;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
}

.feature-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.feature h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--green);
}

.feature p {
  color: var(--light-text);
}

/* Testimonials */
.testimonials {
  padding: 80px 5%;
  text-align: center;
  background-color: white;
  overflow: hidden;
}

.testimonials h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: var(--green);
}

.testimonial-container {
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
}

.testimonials-marquee {
  display: flex;
  flex-direction: row;
  gap: 30px;
  animation: scrollHorizontal 30s linear infinite;
  width: max-content;
}

.testimonials-marquee:hover {
  animation-play-state: paused;
}

@keyframes scrollHorizontal {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.testimonial {
  flex-shrink: 0;
  max-width: 450px;
  min-width: 300px;
  padding: 30px;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: left;
  margin: 0 auto;
}

.quote-icon {
  margin-bottom: 20px;
  color: var(--green);
  font-size: 24px;
}

.quote {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--text);
  font-style: italic;
  line-height: 1.6;
}

.author {
  display: flex;
  flex-direction: column;
}

.name {
  font-weight: 600;
  color: var(--green);
  margin-bottom: 5px;
}

.role {
  color: var(--light-text);
  font-size: 14px;
}

/* CTA Section */
.cta-section {
  padding: 80px 5%;
  background-color: var(--light-purple);
  border-radius: 0 100px 0 0;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--green);
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 30px;
  color: var(--text);
}

.cta-btn {
  background-color: var(--green);
  color: white;
  font-size: 18px;
}

.cta-btn:hover {
  background-color: white;
  color: var(--green);
  border-color: var(--green);
}

.cta-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

.cta-shape {
  position: absolute;
}

.cta-shape-1 {
  width: 150px;
  height: 150px;
  background-color: rgba(255, 255, 255, 0.2);
  top: -50px;
  left: 10%;
  border-radius: 50%;
}

.cta-shape-2 {
  width: 100px;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.2);
  bottom: -30px;
  right: 15%;
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

.cta-shape-3 {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.2);
  top: 50%;
  right: 5%;
  border-radius: 30%;
}

/* Join the Daycare Section */
.join-daycare-section {
  padding: 80px 5%;
  background-color: var(--white);
}

.join-daycare-section .section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.join-daycare-section .section-header h2 {
  font-size: 38px;
  color: var(--green);
  margin-bottom: 15px;
  font-family: "Playfair Display", serif;
}

.join-daycare-section .section-header p {
  font-size: 17px;
  color: var(--light-text);
  line-height: 1.7;
}

.forms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.form-card {
  background: var(--white);
  border: 1px solid #e8ede5;
  border-radius: var(--border-radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.form-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  border-color: var(--purple);
}

.form-card .form-icon {
  width: 48px;
  height: 48px;
  background-color: var(--light-purple);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-card .form-icon svg,
.form-card .form-icon i {
  color: var(--green);
  width: 24px;
  height: 24px;
}

.form-card .form-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  flex-grow: 1;
}

.form-card .form-meta {
  font-size: 13px;
  color: #8a9a80;
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-card .download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background-color: var(--green);
  color: var(--white);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--green);
  align-self: flex-start;
}

.form-card .download-btn:hover {
  background-color: transparent;
  color: var(--green);
}

.form-card .download-btn svg,
.form-card .download-btn i {
  width: 16px;
  height: 16px;
}

@media (max-width: 768px) {
  .join-daycare-section {
    padding: 50px 5%;
  }

  .join-daycare-section .section-header h2 {
    font-size: 28px;
  }

  .forms-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Footer */
footer {
  background-color: var(--light-green);
  padding: 60px 5% 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-logo {
  max-width: 300px;
}

.footer-logo h2 {
  color: var(--green);
  font-size: 28px;
  margin-bottom: 15px;
}

.footer-logo p {
  color: var(--light-text);
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 24px;
  height: 24px;
  color: var(--green);
  transition: color 0.3s;
}

.social-icon:hover {
  color: var(--text);
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--green);
}

.footer-column a {
  display: block;
  margin-bottom: 10px;
  color: #143D60;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: #EB5B00;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(58, 106, 92, 0.2);
  color: var(--light-text);
}

/* Alt Section */
.alt-section {
  background-color: var(--light-yellow);
  border-radius: var(--border-radius);
  padding: 60px 5%;
  margin: 60px auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 5%;
  }

  .hero-content {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .hero-content p {
    margin: 0 auto 30px;
  }

  .cards-section,
  .features-section,
  .testimonial-container {
    flex-direction: column;
  }

  .testimonial {
    max-width: 100%;
  }

  .flexible-solutions {
    flex-direction: column-reverse;
    text-align: center;
  }

  .solutions-content {
    margin-bottom: 40px;
  }

  .plant-icon {
    display: flex;
    justify-content: center;
  }

  .footer-content {
    flex-direction: column;
    gap: 40px;
  }

  .footer-logo {
    text-align: center;
    max-width: 100%;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-links {
    justify-content: space-around;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .auth-buttons {
    order: 3;
  }
  .browser-mockup {
    width: 95%;
  }
  .footer-links {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-content h2 {
    font-size: 32px;
  }

  .colored-heading-section h2 {
    font-size: 28px;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .auth-buttons {
    flex-direction: column;
    align-items: center;
  }

  .browser-controls {
    padding: 8px;
  }

  .browser-dot {
    width: 8px;
    height: 8px;
    margin-right: 4px;
  }

  .browser-address {
    font-size: 12px;
    padding: 3px 8px;
  }
}

/* Animation classes */
.card,
.colored-heading-section,
.app-preview,
.flexible-solutions,
.features-section,
.testimonial,
.cta-content {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Policy Pages Styles */
.policy-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.policy-header {
  text-align: center;
  margin-bottom: 3rem;
}

.policy-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1rem;
}

.last-updated {
  color: #666;
  font-size: 0.9rem;
}

.policy-section {
  margin-bottom: 3rem;
  padding: 2rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.policy-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 1rem;
}

.policy-section p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.policy-section ul {
  list-style-type: none;
  padding-left: 0;
}

.policy-section ul li {
  color: #555;
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}



/* Responsive styles for policy pages */
@media (max-width: 768px) {
  .policy-content {
    padding: 1rem;
  }

  .policy-header h1 {
    font-size: 2rem;
  }

  .policy-section {
    padding: 1.5rem;
  }

  .policy-section h2 {
    font-size: 1.5rem;
  }
}

/* FAQ Page Styles */
.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.faq-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--green);
  margin-bottom: 1rem;
}

.faq-item p {
  color: var(--light-text);
  line-height: 1.6;
}

.faq-item a {
  color: var(--green);
  text-decoration: underline;
  transition: color 0.3s;
}

.faq-item a:hover {
  color: var(--purple);
}

/* Responsive styles for FAQ page */
@media (max-width: 768px) {
  .faq-item h3 {
    font-size: 1.2rem;
  }
}

/* Construction Message Styles */
.construction-message {
  text-align: center;
  padding: 3rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin: 2rem auto;
  max-width: 600px;
}

.construction-icon {
  width: 64px;
  height: 64px;
  color: var(--green);
  margin-bottom: 1.5rem;
}

.construction-message h2 {
  color: var(--green);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.construction-message p {
  color: var(--light-text);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.construction-message p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .construction-message {
    padding: 2rem;
    margin: 1rem;
  }

  .construction-message h2 {
    font-size: 1.5rem;
  }

  .construction-message p {
    font-size: 1rem;
  }
}

/* Logo Link Styles */
.logo a:hover {
  opacity: 0.8;
}

/* Slideshow Styles */
.slideshow-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 5px;
}

.slideshow {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  object-fit: cover;
  display: none;
}

.slide.active {
  opacity: 1;
  display: block;
}

.slideshow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.7);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 18px;
  cursor: pointer;
  z-index: 2;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slideshow-btn:hover {
  background: rgba(255, 255, 255, 0.9);
}

.slideshow-btn.prev {
  left: 10px;
}

.slideshow-btn.next {
  right: 10px;
}

/* Announcement Banner Styles */
.announcement-banner {
  background: linear-gradient(135deg, var(--green) 0%, #2c5347 100%);
  color: white;
  padding: 15px 0;
  overflow: hidden;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-bottom: 3px solid var(--yellow);
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  animation: scroll 15s linear infinite;
  white-space: nowrap;
  padding: 0 20px;
  width: max-content;
  min-width: 100%;
}

.announcement-content span {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: white;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.announcement-content span:first-child,
.announcement-content span:last-child {
  color: var(--yellow);
  font-size: 1.5rem;
  filter: drop-shadow(0 0 8px rgba(230, 213, 154, 0.6));
  animation: sparkle 2s ease-in-out infinite alternate;
}

@keyframes scroll {
  0% {
    transform: translateX(20%);
  }
  50% {
    transform: translateX(-20%);
  }
  100% {
    transform: translateX(20%);
  }
}

@keyframes sparkle {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 8px rgba(230, 213, 154, 0.6));
  }
  100% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px rgba(230, 213, 154, 0.8));
  }
}

.announcement-banner:hover .announcement-content {
  animation-play-state: paused;
}

/* Responsive styles for announcement banner */
@media (max-width: 768px) {
  .announcement-banner {
    padding: 12px 0;
  }
  
  .announcement-content span {
    font-size: 1.1rem;
  }
  
  .announcement-content span:first-child,
  .announcement-content span:last-child {
    font-size: 1.3rem;
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(10%);
    }
    50% {
      transform: translateX(-10%);
    }
    100% {
      transform: translateX(10%);
    }
  }
}

@media (max-width: 480px) {
  .announcement-banner {
    padding: 10px 0;
  }
  
  .announcement-content {
    gap: 15px;
    padding: 0 10px;
  }
  
  .announcement-content span {
    font-size: 1rem;
  }
  
  .announcement-content span:first-child,
  .announcement-content span:last-child {
    font-size: 1.2rem;
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(5%);
    }
    50% {
      transform: translateX(-5%);
    }
    100% {
      transform: translateX(5%);
    }
  }
}
