/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: #F5F7FA; /* Cool White Background */
    color: #222222; /* Dark Charcoal */
    line-height: 1.6;
}

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

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Header */
/* Header */
header {
    background: linear-gradient(90deg, #0078D4, #9B51E0); /* Vivid Blue to Soft Purple */
    color: #FFFFFF;
    padding: 15px 20px;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: bold;
}

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

nav ul.menu li a {
    color: #FFFFFF;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul.menu li a:hover {
    color: #FFD700; /* Gold Hover Effect */
}

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

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

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


/* Hero Section */
/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #0078D4, #9B51E0); /* Vivid Blue to Soft Purple */
    color: #FFFFFF; /* White text */
    border-radius: 8px;
    margin: 20px auto;
    max-width: 1200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.hero h1 {
    font-size: 2.8rem; /* Larger for prominence */
    font-weight: bold;
    color: #FFD700; /* Gold text for contrast */
    margin-bottom: 20px;
    letter-spacing: 1px; /* Slightly spaced letters */
}

.hero p {
    font-size: 1.2rem;
    color: #FFFFFF; /* White text */
    line-height: 1.8; /* Comfortable line spacing */
    max-width: 800px;
    margin: 0 auto;
}

.cta-button {
    background: #FFD700; /* Gold */
    color: #222222; /* Dark Charcoal */
    padding: 12px 25px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.2s ease;
    display: inline-block;
    margin-top: 20px;
}

.cta-button:hover {
    background: #E5AC00; /* Darker Gold */
    transform: scale(1.05); /* Slight zoom on hover */
}


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

.features h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

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

.feature-card {
    flex: 1;
    padding: 20px;
    background: #FFFFFF; /* White Background */
    border: 1px solid #D1D5DB; /* Light Gray Border */
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #0078D4; /* Vivid Blue */
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 1rem;
    color: #555555;
}

/* Testimonial Section */
.testimonial {
    text-align: center;
    padding: 40px 20px;
    background: #FFFFFF;
    margin: 40px auto;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: #555555;
}

/* Footer */
/* Footer */
footer {
    background: #2E4057; /* Midnight Blue */
    color: #FFFFFF; /* White Text */
    padding: 30px 20px;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.footer-logo {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.footer-logo img {
    max-height: 60px;
}

.footer-logo p {
    font-size: 1rem;
    line-height: 1.5;
    color: #CCCCCC; /* Light Gray */
    margin: 0;
    max-width: 400px; /* Prevent text from being too wide */
}

.footer-links {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.footer-links a {
    color: #FFD700; /* Gold */
    font-weight: bold;
    text-decoration: none;
    font-size: 1rem;
}

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

.responsible-logos {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.responsible-logos img {
    max-height: 40px;
    margin: 5px;
}

/* Responsive Footer Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-logo, .footer-links, .responsible-logos {
        width: 100%; /* Full width on mobile */
        align-items: center;
    }

    .footer-logo p {
        max-width: 100%; /* Allow description text to use full width */
    }

    .footer-links {
        flex-direction: column; /* Stack links vertically */
        gap: 15px;
    }

    .responsible-logos {
        flex-wrap: wrap; /* Wrap logos if there are too many */
        justify-content: center;
    }

    .responsible-logos img {
        max-height: 30px; /* Slightly smaller logos on mobile */
    }
}




/* Main Content Styling */
/* Main Content Styling */
main {
    max-width: 1200px;
    margin: 40px auto;
    padding: 30px;
    background: #FFFFFF; /* White Background */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle Shadow */
    color: #222222; /* Dark Charcoal */
    line-height: 1.8; /* Comfortable line spacing */
    font-size: 1.1rem;
}

main h2, main h3, main h4 {
    font-family: 'Arial', sans-serif;
    font-size: 1.8rem; /* Adjust based on heading level */
    font-weight: bold;
    color: #6E1E2A; /* Deep Burgundy */
    text-transform: uppercase; /* Uppercase for emphasis */
    margin-bottom: 15px;
}

main h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #0078D4; /* Vivid Blue */
    margin-bottom: 25px;
    text-align: center;
    background: linear-gradient(90deg, #0078D4, #9B51E0); /* Blue to Purple */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

main h2 {
    font-size: 2rem;
    font-weight: semi-bold;
    color: #222222; /* Dark Charcoal */
    margin: 30px 0 20px;
    position: relative;
}

main h2:before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 4px;
    background: #0078D4; /* Vivid Blue Bar Underline */
}

main h3 {
    font-size: 1.6rem;
    font-weight: bold;
    color: #9B51E0; /* Soft Purple */
    margin: 20px 0 15px;
}

/* Paragraphs */
main p {
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4A4A4A; /* Slightly muted dark gray for better readability */
    margin-bottom: 20px;
    text-align: justify; /* Neat text alignment */
}

/* Blockquotes */
main blockquote {
    font-size: 1.2rem;
    color: #555555; /* Muted Gray */
    border-left: 4px solid #9B51E0; /* Purple Stripe */
    padding-left: 15px;
    margin: 20px 0;
    font-style: italic;
    background: #F5F7FA; /* Light Background */
    border-radius: 5px;
    padding: 15px;
}

/* Lists */
main ul, main ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

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

main ul li:before {
    content: '✔'; /* Custom checkmark */
    color: #0078D4; /* Vivid Blue */
    font-size: 1.3rem;
    margin-right: 10px;
}

main ol li:before {
    content: counter(list-counter) '.'; /* Custom numbering */
    color: #9B51E0; /* Soft Purple */
    font-weight: bold;
    font-size: 1.3rem;
    margin-right: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    main {
        padding: 20px;
    }

    main h1 {
        font-size: 2rem;
    }

    main h2 {
        font-size: 1.8rem;
    }

    main h3 {
        font-size: 1.4rem;
    }

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



/* FAQ Section */
.faq {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    background: #FFFFFF; /* White background */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    color: #222222; /* Dark Charcoal */
    font-size: 1.1rem;
    line-height: 1.8;
}

.faq h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #0078D4; /* Vivid Blue */
    text-align: center;
    margin-bottom: 30px;
}

.faq-item {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 5px;
    background: #F5F7FA; /* Light background for contrast */
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:nth-child(even) {
    background: #EDEFF3; /* Alternating background */
}

.faq-item:hover {
    background: #FFFFFF; /* White background on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Highlighted shadow */
}

.faq-question {
    font-size: 1.5rem;
    font-weight: bold;
    color: #9B51E0; /* Soft Purple */
    margin-bottom: 10px;
}

.faq-answer {
    font-size: 1.1rem;
    color: #444444; /* Muted Dark Gray */
}

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

    .faq h2 {
        font-size: 1.8rem;
    }

    .faq-question {
        font-size: 1.3rem;
    }

    .faq-answer {
        font-size: 1rem;
    }
}

/* ===== Header + Burger (FULL) ===== */
.site-header{
  position: relative;
  z-index: 999;
}

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

/* Logo */
.site-header .logo{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.site-header .logo img{
  display: block;
  height: 40px;
  width: auto;
}

.site-header .logo span{
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
}

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

.site-header .main-nav .menu{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-header .main-nav .menu li{
  margin: 0;
}

.site-header .main-nav .menu a{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 10px;
  color: #ffffff;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.14);
  font-weight: 600;
  line-height: 1.2;
}

.site-header .main-nav .menu a:hover,
.site-header .main-nav .menu a:focus{
  background: rgba(255,255,255,.18);
  outline: none;
}

/* Burger button */
.site-header .burger{
  display: none;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.18);
  border-radius: 10px;
  padding: 8px;
  cursor: pointer;
  flex: 0 0 auto;
  z-index: 2000;
}

.site-header .burger-icon{
  width: 100%;
  height: 100%;
}

.site-header .burger-icon path{
  stroke: #ffffff;
  stroke-width: 2.6;
  stroke-linecap: round;
  fill: none;
}

/* Mobile */
@media (max-width: 900px){
  .site-header .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: 12px;
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 12px 30px rgba(0,0,0,.35);
  }

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

  .site-header .main-nav .menu{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .site-header .main-nav .menu a{
    width: 100%;
    justify-content: center;
    background: rgba(255,255,255,.10);
  }
}
