/* ==========================================================================
   Reset & base
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.65;
  color: #333333;                  /* dark blue text */
  background-color: #CCCCCC;       /* light gray main bg */
}

a {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.65;
  color: #666666;
  text-decoration: none;
}
a {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.65;
  color: #333333;
  text-decoration: none;
}
a:hover,
a.active {
  color: #FFFF33;                 /* medium green accent */
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #333333;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: #CCCCCC;
  text-decoration: none;
  margin-left: 0.6rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-link,
.lang-link {
  color: #CCCCCC;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: color 0.25s ease;
}

.nav-link:hover,
.nav-link.active,
.lang-link:hover {
  color: #FFFF33;                 /* medium green accent */
}

.current-lang {
  color: #FFFF33;
  font-weight: 700;
}

.lang-separator {
  color: #CCCCCC;
  font-weight: 300;
}

.logo-and-text {
    display: flex;
    align-items: center;
    gap: 30px;         
    flex-wrap: wrap;   
}

.logo-and-text img {
    max-width: 300px;
    height: auto;
    flex-shrink: 0;    
}
.text-content {
    flex: 1;  
    min-width: 300px;
}
.text-content h1 {
    margin: 0;
    font-size: 2.8rem;
}
/* ==========================================================================
   Content
   ========================================================================== */
.content-wrapper {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero {
  position: relative;
  height: 420px;
  margin-bottom: 3rem;
  overflow: hidden;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* New – makes sure content starts after the left-aligned image area on wide screens */
.sections-container {
  position: relative;
  z-index: 2;
  background: #CCCCCC;           /* same as body, so it looks continuous */
}

  .page-section {
    padding-top: 5rem;           /* more space when image is floating left */
  }

/* Optional improvement – on very wide screens, push content more to the center/right */
@media (min-width: 1200px) {
  .content-wrapper {
    /* padding-left: 42%;           ≈ half screen or a bit more – adjust to taste 38%–48% */
    padding-right: 5%;
  }
  
  .hero {
    position: absolute;
    left: 0;
    top: 80px;                   /* below nav – adjust if your nav height changes */
    width: 480px;                  /* controls how much space image takes on left */
    height: 480px;               /* can be taller now */
    margin-bottom: 0;
    z-index: 1;
  }
  
}

/* Keep the bullet alignment fix (from previous message) */
.ul {
  list-style: none;
  padding-left: 0;        /* Important: reset this */
  margin: 1.0rem 0;
}

.ul li {
  position: relative;
  padding-left: 2.5rem;   /* This creates space on the LEFT of the text */
  margin-bottom: 0.9rem;
}

.ul li::before {
  content: "•";
  position: absolute;
  left: 0;                /* Change this number to move the bullet */
  color: #FFFF33;
  font-size: 1.5rem;
  line-height: 1.35;
  top: 0;                 /* Fine-tune vertical position if needed */
}

/* Nice touch for the highlight paragraph */
.highlight {
  font-style: italic;
  font-weight: 600;
  color: #FFFF33;                /* your accent green */
  margin-top: 2rem;
  text-align: center;
}

/* Title specific */
.title-flex {
  display: flex;           /* This is the key */
  gap: 20px;               /* Space between the two divs */
  margin: 0px 100px;
}
/* Borderless table styling */
.title-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 50px;
}

/* Services section specific */
/* Borderless table styling */
.services-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px auto;
  max-width: 800px;
}

.services-table td {
  padding: 1.2rem 1.5rem;
  font-size: 1.1rem;
  line-height: 1.5;
  border-bottom: 1px solid #CCCCCC; /* very subtle separator line */
  vertical-align: top;
}

.services-table th {
  padding: 1.2rem 1.5rem;
  font-size: 1.1rem;
  line-height: 1.5;
  border-bottom: 1px solid #CCCCCC; /* very subtle separator line */
  vertical-align: top;
}

.services-table th:first-child {
  text-align: left;
  font-weight: 600;
  color: #333333;
}

.services-table th:last-child {
  text-align: right;
  font-weight: 600;
  color: #333333; /* accent green for prices */
  white-space: nowrap;
}

.services-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: #333333;
}

.services-table td:last-child {
  padding-top: 2.1rem;
  text-align: right;
  font-weight: 600;
  color: #FFFF33; /* accent green for prices */
  white-space: nowrap;
}

.main-row {
  cursor: pointer;
  transition: all 0.2s;
  /* font-weight: 600; */
}

.main-row:hover td {
  color: #FFFF33;
}

.details-row {
  display: none;                    /* hidden by default */
}

.details-content {
  text-align: left;
  padding: 15px 20px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333333;
  white-space: wrap;
}

.button-container{
  width: 100%;
  text-align: right;
}

.button-link {
  display: inline-block;
  background-color: #FFFF33;     /* Main color */
  color: #333333;                /* Text color */
  padding: 14px 28px;
  border-radius: 12px;           /* Rounded corners */
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;         /* Removes underline */
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;                  /* No border */
}

/* Hover effect */
.button-link:hover {
  background-color: #333333;     /* Darker shade */
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.3);
}

/* Active/pressed effect */
.button-link:active {
  transform: scale(0.97);
}

/* Mobile / narrow screens – full width, centered text */
@media (max-width: 1199px) {
  .services-table td {
    padding: 1rem 1.2rem;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.main-footer {
  background-color: #333333;
  color: #CCCCCC;
  padding: 4rem 2rem 2rem;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
}

.brand-column{
  text-align: center;
}

.footer-column a {
  color: #CCCCCC;
  text-decoration: none;
  display: block;
  margin-bottom: 0.9rem;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: #FFFF33;
}

.association-logo {
  max-width: 160px;
  height: auto;
  margin-bottom: 1.2rem;
  padding: 8px;
  border-radius: 8px;
}

.copyright {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #CCCCCC;
  font-size: 0.95rem;
  opacity: 0.9;
}

/* ==========================================================================
   Mobile friendly basics
   ========================================================================== */
@media (max-width: 820px) {
  .nav-container {
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.3rem;
  }
  
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.4rem;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}