/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background: #FDF6EC; /* Pale Beige */
    color: #333333; /* Charcoal Gray */
}

/* Header */
/* Header */
header {
    background: #2E4057; /* Midnight Blue */
    color: #FDF6EC; /* Pale Beige */
    padding: 20px;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #FDF6EC;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.logo span {
    font-size: 1.5rem;
    font-weight: bold;
    color: #C9A66B; /* Warm Gold */
}

nav ul.menu {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
    margin: 0;
}

nav ul.menu li a {
    color: #FDF6EC; /* Pale Beige */
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
}

nav ul.menu li a:hover {
    color: #C9A66B; /* Warm Gold */
}

/* Mobile Header Styles */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column; /* Stack logo and menu vertically */
        gap: 15px;
        text-align: center;
    }

    .logo {
        justify-content: center;
    }

    nav ul.menu {
        flex-direction: column; /* Stack menu items vertically */
        gap: 10px;
    }

    nav ul.menu li a {
        font-size: 1.2rem; /* Slightly larger for touch accessibility */
    }
}


/* Intro Section */
.intro {
    text-align: center;
    padding: 40px 20px;
    background: #6E1E2A; /* Deep Burgundy */
    color: #FDF6EC; /* Pale Beige */
    border-radius: 8px;
    margin: 20px auto;
    max-width: 1000px;
}

.intro h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.intro p {
    font-size: 1.2rem;
}

/* Features Section */
.features {
    max-width: 1000px;
    margin: 40px auto;
    text-align: center;
    padding: 20px;
}

.features h2 {
    font-size: 2rem;
    color: #6E1E2A; /* Deep Burgundy */
    margin-bottom: 30px;
}

.feature-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-card {
    flex: 1;
    padding: 20px;
    background: #FDF6EC; /* Pale Beige */
    border: 2px solid #C9A66B; /* Warm Gold */
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #2E4057; /* Midnight Blue */
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 1.1rem;
}

/* Testimonial Section */
.testimonial {
    text-align: center;
    padding: 40px 20px;
    margin: 40px auto;
    background: #C9A66B; /* Warm Gold */
    color: #2E4057; /* Midnight Blue */
    border-radius: 8px;
    max-width: 800px;
}

blockquote {
    font-size: 1.5rem;
    font-style: italic;
    margin: 0;
}

/* Footer */
footer {
    background: #2E4057; /* Midnight Blue */
    color: #FDF6EC; /* Pale Beige */
    padding: 20px 10px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 10px 0;
}

.footer-links a {
    color: #C9A66B; /* Warm Gold */
    text-decoration: none;
    font-weight: bold;
}

.footer-links a:hover {
    text-decoration: underline;
}


/* Main Content Block */
.main-content {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    background: #FDF6EC; /* Pale Beige */
    border: 2px solid #C9A66B; /* Warm Gold Border */
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    color: #333333; /* Dark Charcoal Text */
    line-height: 1.8; /* Comfortable line spacing */
    font-size: 1.1rem;
}

/* Headings */
.main-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff; /* Deep Burgundy */
    margin-bottom: 20px;
    border-bottom: 2px solid #C9A66B; /* Gold underline */
    padding-bottom: 10px;
}

.main-content h2 {
    font-size: 2rem;
    font-weight: semi-bold;
    color: #2E4057; /* Midnight Blue */
    margin: 30px 0 15px;
    border-left: 4px solid #C9A66B; /* Gold stripe */
    padding-left: 10px;
}

.main-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #C9A66B; /* Warm Gold */
    margin: 20px 0 10px;
}

/* Paragraphs */
.main-content p {
    margin-bottom: 20px;
    text-align: justify; /* Neatly aligned for large blocks of text */
}

/* Blockquotes */
.main-content blockquote {
    font-size: 1.2rem;
    color: #555555; /* Muted gray */
    border-left: 5px solid #6E1E2A; /* Deep Burgundy */
    padding-left: 15px;
    margin: 20px 0;
    font-style: italic;
}

/* Lists */
.main-content ul, .main-content ol {
    padding-left: 20px;
    margin-bottom: 20px;
        list-style: none; /* Remove default bullets and numbers */
}

.main-content ul li, .main-content ol li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #333333; /* Dark Charcoal */
}

.main-content ul li:before {
    content: '•'; /* Bullet point */
    color: #C9A66B; /* Warm Gold */
    font-size: 1.5rem;
    margin-right: 10px;
}

.main-content ol li:before {
    content: counter(list-counter) '.'; /* Ordered list counter */
    color: #C9A66B; /* Warm Gold */
    font-weight: bold;
    font-size: 1.5rem;
    margin-right: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        padding: 15px;
    }

    .main-content h1 {
        font-size: 2rem;
    }

    .main-content h2 {
        font-size: 1.8rem;
    }

    .main-content h3 {
        font-size: 1.4rem;
    }

    .main-content p {
        font-size: 1rem;
    }
}




/* Static FAQ Section */
.faq {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    background: #FDF6EC; /* Pale Beige */
    border: 2px solid #C9A66B; /* Warm Gold Border */
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    color: #333333; /* Dark Charcoal Text */
    line-height: 1.8;
    font-size: 1.1rem;
}

.faq h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #6E1E2A; /* Deep Burgundy */
    text-align: center;
    margin-bottom: 30px;
}

.faq-item {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #C9A66B; /* Gold Divider */
}

.faq-item:last-child {
    border-bottom: none; /* Remove divider for the last item */
}

.faq-question {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2E4057; /* Midnight Blue */
    margin-bottom: 10px;
}

.faq-answer {
    font-size: 1.1rem;
    color: #333333; /* Dark Charcoal */
}

/* Pros and Cons Section */
/* Pros and Cons Section */
.pros-cons {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: flex-start;
    margin: 40px auto;
    max-width: 1000px;
}

.pros, .cons {
    flex: 1;
    padding: 25px;
    background: #FFFFFF; /* Clean White Background */
    border: 1px solid #C9A66B; /* Warm Gold Border */
    border-radius: 10px; /* Slightly more rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* Enhanced shadow */
    color: #333333; /* Dark Charcoal Text */
    transition: transform 0.2s ease, box-shadow 0.2s ease; /* Add hover effects */
}

.pros:hover, .cons:hover {
    transform: translateY(-5px); /* Slight lift on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Increased shadow on hover */
}

.pros h3, .cons h3 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #6E1E2A; /* Deep Burgundy */
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid #C9A66B; /* Gold Underline */
    padding-bottom: 10px;
}

.pros ul, .cons ul {
    list-style: none; /* Remove default bullets */
    padding: 0;
    margin: 0;
}

.pros ul li, .cons ul li {
    font-size: 1.2rem;
    margin-bottom: 15px; /* Slightly larger spacing between items */
    padding-left: 35px;
    position: relative;
}

.pros ul li:before {
    content: '✔'; /* Checkmark for pros */
    position: absolute;
    left: 0;
    color: #28A745; /* Green for Pros */
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}

.cons ul li:before {
    content: '✖'; /* Crossmark for cons */
    position: absolute;
    left: 0;
    color: #D9534F; /* Red for Cons */
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .pros-cons {
        flex-direction: column; /* Stack vertically on mobile */
        gap: 20px;
    }
}

.site-header .header-container{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.site-header .main-nav{
  margin-left: auto;
}

.burger{
  display: none;
  width: 46px;
  height: 46px;
  border: 2px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.18);
  border-radius: 12px;
  padding: 8px;
  cursor: pointer;
  z-index: 2000;
  flex: 0 0 auto;
}

.burger-icon{ width: 100%; height: 100%; }
.burger-icon path{
  stroke: #ffffff;
  stroke-width: 2.8;
  stroke-linecap: round;
  fill: none;
}

@media (max-width: 900px){
  .burger{ display: inline-flex; align-items: center; justify-content: center; }

  .site-header .main-nav{
    display: none;
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 10px);
    z-index: 1500;
    background: #0b1f3a;
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 12px 30px rgba(0,0,0,.35);
  }

  .site-header .main-nav.is-open{ display: block; }

  .site-header .main-nav .menu{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .site-header .main-nav .menu a{
    display: block;
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
  }
}
