/* Base Styles */
:root {
    --background-color: #e6e6fa;
    --content-background: #ffffff;
    --accent-color: #959a55;
    --text-dark: #333333;
    --text-light: #777777;
    --shadow: rgba(0, 0, 0, 0.1);
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    background-color: var(--background-color);
    color: var(--text-dark);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
  }
  
  img {
    display: block;
    max-width: 100%;
  }
  
  a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  a:hover, a:focus {
    color: #767b44;
    transform: translateY(-2px);
  }
  
  ul {
    list-style: none;
  }
  
  /* Custom Scrollbar */
  ::-webkit-scrollbar {
    height: 6px;
    width: 6px;
  }
  
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  ::-webkit-scrollbar-thumb {
    background: var(--accent-color);
  }
  
  /* Typography */
  h1, h2, h3, h4, h5 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.5em;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  /* Top Navigation */
  .top_navigation {
    align-items: center;
    background-color: var(--content-background);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 2px 10px var(--shadow);
    display: flex;
    justify-content: space-between;
    left: 0;
    margin: 0 auto;
    max-width: 1200px;
    padding: 1rem 2rem;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 1000;
  }
  
  .agency_identity {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
  }
  
  .agency_identity h1 {
    color: var(--accent-color);
    font-size: 1.75rem;
    margin-bottom: 0;
  }
  
  .tagline {
    color: var(--text-light);
    font-size: 0.875rem;
  }
  
  .primary_links ul {
    display: flex;
    gap: 2rem;
  }
  
  .primary_links a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
  }
  
  .primary_links a:hover {
    color: var(--accent-color);
  }
  
  .primary_links a.active_page {
    color: var(--accent-color);
  }
  
  .primary_links a.active_page:after {
    background-color: var(--accent-color);
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    width: 100%;
  }
  
  .menu_toggle {
    cursor: pointer;
    display: none;
    flex-direction: column;
    height: 20px;
    justify-content: space-between;
    width: 30px;
  }
  
  .menu_toggle span {
    background-color: var(--text-dark);
    height: 3px;
    transition: transform 0.3s ease;
    width: 100%;
  }
  
  /* Welcome Showcase Section */
  .welcome_showcase {
    background-color: var(--content-background);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    margin: 120px auto 4rem;
    max-width: 1200px;
    overflow: hidden;
    padding: 0;
    position: relative;
  }
  
  .showcase_container {
    display: flex;
    flex-direction: row;
    height: 40vh;
    min-height: 400px;
  }
  
  .showcase_message {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    width: 50%;
    z-index: 2;
  }
  
  .showcase_message h2 {
    color: var(--text-dark);
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .showcase_message p {
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
  }
  
  .showcase_actions {
    display: flex;
    gap: 1rem;
  }
  
  .primary_action, .secondary_action {
    border-radius: 0;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .primary_action {
    background-color: var(--accent-color);
    color: white;
  }
  
  .primary_action:hover {
    background-color: #767b44;
    color: white;
  }
  
  .secondary_action {
    background-color: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
  }
  
  .secondary_action:hover {
    background-color: rgba(149, 154, 85, 0.1);
    color: var(--accent-color);
  }
  
  .showcase_visual {
    height: 100%;
    position: relative;
    width: 50%;
  }
  
  .showcase_image {
    height: 100%;
    object-fit: cover;
    width: 100%;
  }
  
  .showcase_visual:after {
    background-color: rgba(0, 0, 0, 0);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }
  
  .quick_facts {
    background-color: var(--content-background);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    text-align: center;
    width: 100%;
  }
  
  .quick_facts td {
    color: var(--text-light);
    padding: 0 1rem;
    width: 25%;
  }
  
  .fact_number {
    color: var(--accent-color);
    display: block;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .showcase_container {
      flex-direction: column;
      height: auto;
    }
    
    .showcase_message, .showcase_visual {
      width: 100%;
    }
    
    .showcase_visual {
      height: 300px;
      order: -1;
    }
    
    .quick_facts tr {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
    
    .quick_facts td {
      width: 100%;
    }
  }
  
  @media (max-width: 768px) {
    .top_navigation {
      padding: 1rem;
    }
    
    .primary_links {
      background-color: var(--content-background);
      border-radius: 0 0 10px 10px;
      box-shadow: 0 5px 10px var(--shadow);
      display: none;
      left: 0;
      padding: 1rem;
      position: absolute;
      top: 100%;
      width: 100%;
    }
    
    .primary_links ul {
      flex-direction: column;
      gap: 1rem;
    }
    
    .menu_toggle {
      display: flex;
    }
    
    .showcase_message {
      padding: 2rem;
    }
    
    .showcase_message h2 {
      font-size: 1.75rem;
    }
    
    .showcase_actions {
      flex-direction: column;
      width: 100%;
    }
    
    .primary_action, .secondary_action {
      width: 100%;
    }
  }
  
  @media (max-width: 576px) {
    .quick_facts tr {
      grid-template-columns: 1fr;
    }
    
    .fact_number {
      font-size: 1.5rem;
    }
  }










  /* Service Offerings Section */
.service_offerings {
    background-color: var(--content-background);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    margin: 6rem auto;
    max-width: 1200px;
    overflow: hidden;
    padding: 4rem 2rem;
  }
  
  .offerings_container {
    margin: 0 auto;
    max-width: 1100px;
  }
  
  .offerings_intro {
    margin-bottom: 3rem;
    text-align: center;
  }
  
  .offerings_intro h2 {
    color: var(--text-dark);
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .offerings_intro p {
    color: var(--text-light);
    margin: 0 auto;
    max-width: 700px;
  }
  
  .service_collection {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .service_item {
    background-color: var(--content-background);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    box-shadow: 0 3px 10px var(--shadow);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .service_item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
  }
  
  .service_item::before {
    background-color: var(--accent-color);
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }
  
  .service_content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2rem;
  }
  
  .service_content h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .service_content p {
    color: var(--text-light);
    flex-grow: 1;
    margin-bottom: 1.5rem;
  }
  
  .service_details {
    align-self: flex-start;
    color: var(--accent-color);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: transform 0.3s ease;
  }
  
  .service_details::after {
    background-color: var(--accent-color);
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    transition: width 0.3s ease;
    width: 0;
  }
  
  .service_details:hover {
    transform: translateX(5px);
  }
  
  .service_details:hover::after {
    width: 100%;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .service_offerings {
      padding: 3rem 1.5rem;
    }
    
    .service_collection {
      gap: 1.5rem;
    }
    
    .service_content {
      padding: 1.5rem;
    }
  }
  
  @media (max-width: 576px) {
    .offerings_intro {
      margin-bottom: 2rem;
    }
    
    .service_content h3 {
      font-size: 1.25rem;
    }
  }











  /* Agency Story Section */
.agency_story {
    background-color: var(--content-background);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    margin: 6rem auto;
    max-width: 1200px;
    overflow: hidden;
  }
  
  .story_container {
    display: flex;
    flex-direction: row;
  }
  
  .narrative_column, .visual_column {
    padding: 4rem 3rem;
    width: 50%;
  }
  
  .narrative_column {
    background-color: var(--content-background);
  }
  
  .visual_column {
    background-color: #f9f9f9;
  }
  
  .story_headline {
    margin-bottom: 2rem;
  }
  
  .story_headline h2 {
    color: var(--text-dark);
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .subtitle {
    color: var(--accent-color);
    font-size: 1.125rem;
    font-weight: 500;
  }
  
  .origin_narrative p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
  }
  
  .client_testimonial {
    background-color: #f9f9f9;
    border-left: 0;
    border-radius: 10px;
    margin: 2.5rem 0;
    padding: 2rem;
    position: relative;
  }
  
  .client_testimonial p {
    color: var(--text-dark);
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  .client_testimonial cite {
    color: var(--accent-color);
    display: block;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 600;
  }
  
  .team_showcase {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  
  .team_member {
    background-color: var(--content-background);
    border-radius: 10px;
    box-shadow: 0 3px 10px var(--shadow);
    margin: 0;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
  }
  
  .team_member:hover {
    transform: translateY(-5px);
  }
  
  .member_portrait {
    aspect-ratio: 1 / 1;
    height: 100%;
    object-fit: cover;
    width: 100%;
  }
  
  .primary_planner {
    margin-bottom: 1.5rem;
  }
  
  .primary_planner .member_portrait {
    aspect-ratio: 16 / 9;
  }
  
  .team_member figcaption {
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    bottom: 0;
    left: 0;
    padding: 1.5rem;
    position: absolute;
    width: 100%;
  }
  
  .team_member h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
  }
  
  .team_member p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
  }
  
  .team_gallery {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonial_ribbon {
    background-color: var(--accent-color);
    padding: 3rem 2rem;
    width: 100%;
  }
  
  .ribbon_content {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 0 auto;
    max-width: 1100px;
  }
  
  .testimonial_ribbon .client_testimonial {
    background-color: var(--content-background);
    flex: 1;
    margin: 0;
    max-width: 500px;
  }
  
  .mobile_only {
    display: none;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .story_container {
      flex-direction: column;
    }
    
    .narrative_column, .visual_column {
      padding: 3rem 2rem;
      width: 100%;
    }
    
    .narrative_column {
      order: 2;
    }
    
    .visual_column {
      order: 1;
    }
    
    .desktop_only {
      display: none;
    }
    
    .mobile_only {
      display: block;
    }
    
    .testimonial_ribbon {
      padding: 0;
    }
  }
  
  @media (max-width: 768px) {
    .narrative_column, .visual_column {
      padding: 2.5rem 1.5rem;
    }
    
    .client_testimonial {
      padding: 1.5rem;
    }
    
    .client_testimonial p {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 576px) {
    .team_gallery {
      gap: 0.75rem;
    }
    
    .primary_planner {
      margin-bottom: 0.75rem;
    }
    
    .team_member figcaption {
      padding: 1rem;
    }
    
    .team_member h3 {
      font-size: 1rem;
    }
    
    .team_member p {
      font-size: 0.75rem;
    }
  }










  /* Celebration Packages Section */
.celebration_packages {
    background-color: var(--content-background);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    margin: 6rem auto;
    max-width: 1200px;
    overflow: hidden;
    padding: 4rem 2rem;
  }
  
  .packages_container {
    margin: 0 auto;
    max-width: 1100px;
  }
  
  .packages_intro {
    margin-bottom: 3rem;
    text-align: center;
  }
  
  .packages_intro h2 {
    color: var(--text-dark);
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .packages_intro p {
    color: var(--text-light);
    margin: 0 auto;
    max-width: 700px;
  }
  
  .packages_comparison {
    display: block;
    margin-bottom: 3rem;
    overflow-x: auto;
  }
  
  .package_options {
    border-collapse: collapse;
    min-width: 800px;
    width: 100%;
  }
  
  .package_options th, .package_options td {
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem;
    text-align: center;
  }
  
  .package_options th {
    background-color: #f9f9f9;
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 600;
    padding: 1.5rem 1rem;
  }
  
  .feature_column {
    text-align: left;
    width: 30%;
  }
  
  .package_column {
    width: 23.33%;
  }
  
  .package_description {
    background-color: #f9f9f9;
    color: var(--text-dark);
    font-weight: 500;
    text-align: left;
  }
  
  .package_highlight td {
    background-color: #f5f6ed;
    color: var(--text-dark);
    font-size: 0.875rem;
    line-height: 1.4;
    padding: 1.5rem 1rem;
  }
  
  .price_row td {
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    padding: 1.5rem 1rem;
  }
  
  .package_price {
    color: var(--accent-color);
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .feature_included {
    color: var(--accent-color);
    font-weight: 500;
  }
  
  .feature_limited {
    color: #f0ad4e;
    font-size: 0.875rem;
  }
  
  .feature_excluded {
    color: #d9534f;
    font-size: 0.875rem;
  }
  
  .action_row td {
    border-top: 2px solid rgba(0, 0, 0, 0.05);
    padding: 1.5rem 1rem;
  }
  
  .package_select {
    background-color: var(--accent-color);
    border-radius: 0;
    color: white;
    display: inline-block;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .package_select:hover {
    background-color: #767b44;
    color: white;
    transform: translateY(-2px);
  }
  
  .package_cards {
    display: none;
  }
  
  /* Mobile Package Cards */
  .package_card {
    background-color: var(--content-background);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    box-shadow: 0 3px 10px var(--shadow);
    margin-bottom: 2rem;
    overflow: hidden;
    padding: 2rem;
    position: relative;
    text-align: center;
  }
  
  .package_card::before {
    background-color: var(--accent-color);
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }
  
  .package_card h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .package_tagline {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
  }
  
  .package_card .package_price {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .package_features {
    list-style-position: inside;
    margin-bottom: 2rem;
    text-align: left;
  }
  
  .package_features li {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
  }
  
  .package_features li::before {
    color: var(--accent-color);
    content: "•";
    left: 0;
    position: absolute;
  }
  
  .package_card .package_select {
    display: block;
    width: 100%;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .packages_comparison {
      display: none;
    }
    
    .package_cards {
      display: block;
    }
  }
  
  @media (max-width: 768px) {
    .celebration_packages {
      padding: 3rem 1.5rem;
    }
  }
  
  @media (max-width: 576px) {
    .package_card {
      padding: 1.5rem;
    }
    
    .package_card .package_price {
      font-size: 1.75rem;
    }
  }











  /* Inspiration Gallery Section */
.inspiration_gallery {
    background-color: var(--content-background);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    margin: 6rem auto;
    max-width: 1200px;
    overflow: hidden;
    padding: 4rem 2rem;
  }
  
  .gallery_container {
    margin: 0 auto;
    max-width: 1100px;
  }
  
  .gallery_intro {
    margin-bottom: 3rem;
    text-align: center;
  }
  
  .gallery_intro h2 {
    color: var(--text-dark);
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .gallery_intro p {
    color: var(--text-light);
    margin: 0 auto;
    max-width: 700px;
  }
  
  .gallery_navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
  }
  
  .gallery_filter {
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
    color: var(--text-light);
    cursor: pointer;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  }
  
  .gallery_filter:hover {
    background-color: rgba(149, 154, 85, 0.1);
    border-color: var(--accent-color);
    color: var(--accent-color);
  }
  
  .gallery_filter.active {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
  }
  
  .memory_collection {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
  
  .memory_item {
    background-color: var(--content-background);
    border-radius: 10px;
    box-shadow: 0 3px 10px var(--shadow);
    margin: 0;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .memory_item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
  }
  
  .memory_image {
    aspect-ratio: 3 / 4;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    width: 100%;
  }
  
  .memory_item:hover .memory_image {
    transform: scale(1.05);
  }
  
  .memory_item figcaption {
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    bottom: 0;
    left: 0;
    padding: 2rem 1.5rem 1.5rem;
    position: absolute;
    width: 100%;
  }
  
  .memory_item h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
  }
  
  .memory_item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
  }
  
  .gallery_expansion {
    margin-top: 3rem;
    text-align: center;
  }
  
  .view_more {
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    display: inline-block;
    font-weight: 500;
    padding: 0.75rem 2rem;
    position: relative;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .view_more:hover {
    background-color: var(--accent-color);
    color: white;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .memory_collection {
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
  }
  
  @media (max-width: 768px) {
    .inspiration_gallery {
      padding: 3rem 1.5rem;
    }
    
    .gallery_navigation {
      gap: 0.75rem;
    }
    
    .gallery_filter {
      font-size: 0.75rem;
      padding: 0.5rem 1rem;
    }
    
    .memory_collection {
      gap: 1rem;
    }
  }
  
  @media (max-width: 576px) {
    .gallery_intro {
      margin-bottom: 2rem;
    }
    
    .gallery_navigation {
      flex-direction: column;
      margin-bottom: 2rem;
    }
    
    .gallery_filter {
      width: 100%;
    }
    
    .memory_collection {
      grid-template-columns: 1fr;
    }
  }












  /* Process Blueprint Section */
.process_blueprint {
    background-color: var(--content-background);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    margin: 6rem auto;
    max-width: 1200px;
    overflow: hidden;
    padding: 4rem 2rem;
  }
  
  .blueprint_container {
    margin: 0 auto;
    max-width: 1000px;
  }
  
  .blueprint_intro {
    margin-bottom: 4rem;
    text-align: center;
  }
  
  .blueprint_intro h2 {
    color: var(--text-dark);
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .blueprint_intro p {
    color: var(--text-light);
    margin: 0 auto;
    max-width: 700px;
  }
  
  .journey_pathway {
    position: relative;
  }
  
  .journey_pathway::before {
    background-color: rgba(149, 154, 85, 0.2);
    bottom: 0;
    content: "";
    left: 40px;
    position: absolute;
    top: 0;
    width: 2px;
  }
  
  .journey_milestone {
    display: flex;
    margin-bottom: 4rem;
    position: relative;
  }
  
  .journey_milestone:last-child {
    margin-bottom: 0;
  }
  
  .milestone_indicator {
    margin-right: 2rem;
    position: relative;
  }
  
  .indicator_icon {
    align-items: center;
    background-color: var(--content-background);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    color: var(--accent-color);
    display: flex;
    height: 80px;
    justify-content: center;
    position: relative;
    width: 80px;
    z-index: 2;
  }
  
  .indicator_icon svg {
    height: 40px;
    width: 40px;
  }
  
  .milestone_number {
    align-items: center;
    background-color: var(--accent-color);
    border-radius: 50%;
    color: white;
    display: flex;
    font-weight: 600;
    height: 30px;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(30%, -30%);
    width: 30px;
    z-index: 3;
  }
  
  .milestone_content {
    flex: 1;
    padding-top: 0.5rem;
  }
  
  .milestone_content h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .milestone_content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
  }
  
  .milestone_outcomes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    list-style: none;
  }
  
  .milestone_outcomes li {
    background-color: rgba(149, 154, 85, 0.1);
    border-radius: 4px;
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
  }
  
  .blueprint_closure {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 4rem;
    padding-top: 3rem;
    text-align: center;
  }
  
  .blueprint_closure p {
    color: var(--text-light);
    margin: 0 auto 2rem;
    max-width: 700px;
  }
  
  .initiate_journey {
    background-color: var(--accent-color);
    border-radius: 0;
    color: white;
    display: inline-block;
    font-weight: 500;
    padding: 0.75rem 2rem;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .initiate_journey:hover {
    background-color: #767b44;
    color: white;
    transform: translateY(-2px);
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .process_blueprint {
      padding: 3rem 1.5rem;
    }
    
    .journey_pathway::before {
      left: 35px;
    }
    
    .indicator_icon {
      height: 70px;
      width: 70px;
    }
    
    .indicator_icon svg {
      height: 35px;
      width: 35px;
    }
    
    .milestone_content h3 {
      font-size: 1.25rem;
    }
  }
  
  @media (max-width: 576px) {
    .journey_milestone {
      flex-direction: column;
    }
    
    .journey_pathway::before {
      display: none;
    }
    
    .milestone_indicator {
      align-items: center;
      display: flex;
      margin-bottom: 1.5rem;
      margin-right: 0;
    }
    
    .indicator_icon {
      height: 60px;
      margin-right: 1rem;
      width: 60px;
    }
    
    .indicator_icon svg {
      height: 30px;
      width: 30px;
    }
    
    .milestone_number {
      height: 26px;
      width: 26px;
    }
    
    .milestone_content h3 {
      font-size: 1.25rem;
    }
    
    .milestone_outcomes {
      flex-direction: column;
      gap: 0.5rem;
    }
    
    .milestone_outcomes li {
      width: 100%;
    }
  }









  /* Insight Journal Section */
.insight_journal {
    background-color: var(--content-background);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    margin: 6rem auto;
    max-width: 1200px;
    overflow: hidden;
    padding: 4rem 2rem;
  }
  
  .journal_container {
    margin: 0 auto;
    max-width: 1100px;
  }
  
  .journal_intro {
    margin-bottom: 3rem;
    text-align: center;
  }
  
  .journal_intro h2 {
    color: var(--text-dark);
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .journal_intro p {
    color: var(--text-light);
    margin: 0 auto;
    max-width: 700px;
  }
  
  .journal_feature {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
  }
  
  .feature_visual {
    border-radius: 10px;
    overflow: hidden;
    width: 40%;
  }
  
  .feature_image {
    aspect-ratio: 4 / 5;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    width: 100%;
  }
  
  .feature_visual:hover .feature_image {
    transform: scale(1.05);
  }
  
  .feature_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 60%;
  }
  
  .feature_meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .post_category {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
  }
  
  .post_date {
    color: var(--text-light);
    font-size: 0.875rem;
  }
  
  .feature_content h3 {
    color: var(--text-dark);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }
  
  .feature_content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
  }
  
  .continue_reading {
    align-self: flex-start;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    display: inline-block;
    font-weight: 500;
    margin-top: 0.5rem;
    padding: 0.75rem 1.5rem;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .continue_reading:hover {
    background-color: var(--accent-color);
    color: white;
  }
  
  .journal_previews {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 3rem;
  }
  
  .preview_item {
    background-color: var(--content-background);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    box-shadow: 0 3px 10px var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .preview_item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
  }
  
  .preview_visual {
    overflow: hidden;
  }
  
  .preview_image {
    aspect-ratio: 16 / 9;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    width: 100%;
  }
  
  .preview_item:hover .preview_image {
    transform: scale(1.1);
  }
  
  .preview_content {
    padding: 1.5rem;
  }
  
  .preview_meta {
    margin-bottom: 0.75rem;
  }
  
  .preview_content h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .preview_link {
    color: var(--accent-color);
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    position: relative;
  }
  
  .preview_link::after {
    background-color: var(--accent-color);
    bottom: -2px;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    transition: width 0.3s ease;
    width: 0;
  }
  
  .preview_link:hover::after {
    width: 100%;
  }
  
  .journal_navigation {
    text-align: center;
  }
  
  .explore_journal {
    background-color: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    display: inline-block;
    font-weight: 500;
    padding: 0.75rem 2rem;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .explore_journal:hover {
    background-color: var(--accent-color);
    color: white;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .journal_feature {
      flex-direction: column;
      gap: 2rem;
    }
    
    .feature_visual, .feature_content {
      width: 100%;
    }
    
    .journal_previews {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .insight_journal {
      padding: 3rem 1.5rem;
    }
    
    .feature_content h3 {
      font-size: 1.5rem;
    }
  }
  
  @media (max-width: 576px) {
    .journal_previews {
      grid-template-columns: 1fr;
    }
    
    .preview_content h3 {
      font-size: 1.125rem;
    }
  }








  /* Top Menu */
.top_menu {
    background-color: var(--content-background);
    box-shadow: 0 2px 10px var(--shadow);
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
  }
  
  .menu_container {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1200px;
    padding: 1rem 2rem;
    width: 100%;
  }
  
  .brand_name a {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
  }
  
  .contact_link {
    background-color: var(--accent-color);
    color: white;
    display: inline-block;
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .contact_link:hover {
    background-color: #767b44;
    color: white;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .menu_container {
      padding: 0.75rem 1.5rem;
    }
    
    .brand_name a {
      font-size: 1.25rem;
    }
    
    .contact_link {
      font-size: 0.875rem;
      padding: 0.4rem 1rem;
    }
  }










  /* Site Footer */
.site_footer {
    background-color: var(--content-background);
    border-radius: 10px 10px 0 0;
    box-shadow: 0 -2px 10px var(--shadow);
    margin: 6rem auto 0;
    max-width: 1200px;
    overflow: hidden;
    padding: 3rem 2rem 2rem;
  }
  
  .footer_container {
    margin: 0 auto;
    max-width: 1100px;
  }
  
  .footer_content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 2rem;
  }
  
  .footer_identity h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  
  .contact_email {
    color: var(--text-light);
    font-size: 0.95rem;
  }
  
  .footer_links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    list-style: none;
  }
  
  .footer_links a {
    color: var(--text-dark);
    font-size: 0.95rem;
    position: relative;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer_links a:hover {
    color: var(--accent-color);
  }
  
  .footer_links a::after {
    background-color: var(--accent-color);
    bottom: -3px;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    transition: width 0.3s ease;
    width: 0;
  }
  
  .footer_links a:hover::after {
    width: 100%;
  }
  
  .footer_legal {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-light);
    font-size: 0.875rem;
    padding-top: 1.5rem;
    text-align: center;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .site_footer {
      padding: 2.5rem 1.5rem 1.5rem;
    }
    
    .footer_content {
      flex-direction: column;
      gap: 2rem;
    }
    
    .footer_links {
      flex-direction: column;
      gap: 1rem;
    }
  }











  /* Blog Page Styles */
:root {
    --background-color: #e6e6fa;
    --content-background: #ffffff;
    --accent-color: #959a55;
    --text-dark: #333333;
    --text-light: #777777;
    --shadow: rgba(0, 0, 0, 0.1);
  }
  
  /* Blog Header Section */
  .blog_header {
    background-color: var(--content-background);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    margin: 120px auto 3rem;
    max-width: 1200px;
    overflow: hidden;
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .header_container {
    margin: 0 auto;
    max-width: 800px;
  }
  
  .blog_header h1 {
    color: var(--text-dark);
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .blog_header p {
    color: var(--text-light);
    font-size: 1.125rem;
  }
  
  /* Blog Content Section */
  .blog_content {
    margin: 0 auto 4rem;
    max-width: 1200px;
  }
  
  .content_container {
    display: grid;
    gap: 3rem;
    grid-template-columns: 2fr 1fr;
  }
  
  /* Blog Post */
  .blog_post {
    background-color: var(--content-background);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    overflow: hidden;
  }
  
  .post_header {
    padding: 2.5rem 2.5rem 0;
  }
  
  .post_meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .post_category {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
  }
  
  .post_date {
    color: var(--text-light);
    font-size: 0.875rem;
  }
  
  .post_header h2 {
    color: var(--text-dark);
    font-size: 2.25rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
  }
  
  .post_author {
    align-items: center;
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .author_avatar {
    border-radius: 50%;
    height: 50px;
    object-fit: cover;
    width: 50px;
  }
  
  .author_info {
    display: flex;
    flex-direction: column;
  }
  
  .author_name {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 600;
  }
  
  .author_title {
    color: var(--text-light);
    font-size: 0.85rem;
  }
  
  .post_feature {
    margin: 0;
    overflow: hidden;
    width: 100%;
  }
  
  .feature_image {
    aspect-ratio: 16 / 9;
    height: auto;
    object-fit: cover;
    width: 100%;
  }
  
  .post_body {
    padding: 2.5rem;
  }
  
  .post_section {
    margin-bottom: 2.5rem;
  }
  
  .post_section:last-child {
    margin-bottom: 0;
  }
  
  .post_section h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
  
  .post_section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
  }
  
  .post_section p:last-child {
    margin-bottom: 0;
  }
  
  .post_footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 2.5rem;
  }
  
  .post_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }
  
  .tag {
    background-color: rgba(149, 154, 85, 0.1);
    border-radius: 4px;
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
  }
  
  .post_navigation {
    display: flex;
    justify-content: space-between;
  }
  
  .nav_link {
    display: flex;
    flex-direction: column;
    max-width: 45%;
  }
  
  .nav_direction {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }
  
  .nav_title {
    color: var(--accent-color);
    font-weight: 500;
  }
  
  /* Blog Sidebar */
  .blog_sidebar {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }
  
  .sidebar_widget {
    background-color: var(--content-background);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    overflow: hidden;
    padding: 2rem;
  }
  
  .sidebar_widget h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
  
  .related_list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  
  .related_item {
    margin: 0;
    padding: 0;
  }
  
  .related_link {
    display: flex;
    gap: 1rem;
  }
  
  .related_image {
    aspect-ratio: 1 / 1;
    border-radius: 5px;
    height: 70px;
    object-fit: cover;
    width: 70px;
  }
  
  .related_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .related_content h4 {
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }
  
  .related_date {
    color: var(--text-light);
    font-size: 0.8rem;
  }
  
  .category_list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .category_list li a {
    color: var(--text-dark);
    display: block;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  .category_list li a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
  }
  
  .subscribe p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  
  .subscribe_form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .subscribe_input {
    background-color: #f9f9f9;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-family: inherit;
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    width: 100%;
  }
  
  .subscribe_button {
    background-color: var(--accent-color);
    border: none;
    color: white;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: background-color 0.3s ease;
  }
  
  .subscribe_button:hover {
    background-color: #767b44;
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .content_container {
      grid-template-columns: 1fr;
    }
    
    .blog_sidebar {
      gap: 2rem;
    }
  }
  
  @media (max-width: 768px) {
    .blog_header {
      padding: 3rem 1.5rem;
      margin-top: 100px;
    }
    
    .blog_header h1 {
      font-size: 2rem;
    }
    
    .post_header, .post_body, .post_footer {
      padding: 2rem 1.5rem;
    }
    
    .post_header h2 {
      font-size: 1.75rem;
    }
    
    .post_section h3 {
      font-size: 1.25rem;
    }
    
    .post_navigation {
      flex-direction: column;
      gap: 1.5rem;
    }
    
    .nav_link {
      max-width: 100%;
    }
    
    .sidebar_widget {
      padding: 1.5rem;
    }
  }
  
  @media (max-width: 576px) {
    .blog_header {
      padding: 2.5rem 1.25rem;
    }
    
    .blog_header h1 {
      font-size: 1.75rem;
    }
    
    .post_header, .post_body, .post_footer {
      padding: 1.5rem 1.25rem;
    }
    
    .post_header h2 {
      font-size: 1.5rem;
    }
    
    .post_meta {
      flex-direction: column;
      gap: 0.5rem;
    }
    
    .post_tags {
      justify-content: center;
    }
  }











  /* Contacts Page Styles */
:root {
    --background-color: #e6e6fa;
    --content-background: #ffffff;
    --accent-color: #959a55;
    --text-dark: #333333;
    --text-light: #777777;
    --shadow: rgba(0, 0, 0, 0.1);
    --form-bg: #f9f9f9;
  }
  
  /* Contact Hero Section */
  .contact_hero {
    background-color: var(--content-background);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    margin: 120px auto 3rem;
    max-width: 1200px;
    overflow: hidden;
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .hero_container {
    margin: 0 auto;
    max-width: 800px;
  }
  
  .contact_hero h1 {
    color: var(--text-dark);
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .contact_hero p {
    color: var(--text-light);
    font-size: 1.125rem;
  }
  
  /* Contact Content Section */
  .contact_content {
    margin: 0 auto 4rem;
    max-width: 1200px;
  }
  
  .content_container {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr 2fr;
  }
  
  /* Contact Info Cards */
  .contact_info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .info_card {
    background-color: var(--content-background);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    padding: 2rem;
    position: relative;
    transition: transform 0.3s ease;
  }
  
  .info_card:hover {
    transform: translateY(-5px);
  }
  
  .card_icon {
    align-items: center;
    background-color: rgba(149, 154, 85, 0.1);
    border-radius: 50%;
    color: var(--accent-color);
    display: flex;
    height: 60px;
    justify-content: center;
    margin-bottom: 1.5rem;
    width: 60px;
  }
  
  .card_icon svg {
    height: 30px;
    width: 30px;
  }
  
  .info_card h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .info_card address {
    color: var(--text-light);
    font-style: normal;
    line-height: 1.8;
  }
  
  .phone_number, .email_address {
    color: var(--text-light);
    display: block;
    margin-bottom: 0.5rem;
  }
  
  .hours_list {
    list-style: none;
    padding: 0;
  }
  
  .hours_list li {
    align-items: center;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
    color: var(--text-light);
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
  }
  
  .hours_list li:last-child {
    border-bottom: none;
  }
  
  .day {
    font-weight: 500;
  }
  
  .time {
    color: var(--accent-color);
  }
  
  /* Contact Form */
  .contact_form_container {
    background-color: var(--content-background);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    overflow: hidden;
  }
  
  .form_header {
    background-color: rgba(149, 154, 85, 0.1);
    padding: 2.5rem;
    text-align: center;
  }
  
  .form_header h2 {
    color: var(--text-dark);
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  
  .form_header p {
    color: var(--text-light);
  }
  
  .contact_form {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr 1fr;
    padding: 2.5rem;
  }
  
  .form_group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .form_group.full_width {
    grid-column: span 2;
  }
  
  .contact_form label {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
  }
  
  .contact_form input,
  .contact_form textarea {
    background-color: var(--form-bg);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
    color: var(--text-dark);
    font-family: inherit;
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease;
  }
  
  .contact_form input:focus,
  .contact_form textarea:focus {
    border-color: var(--accent-color);
    outline: none;
  }
  
  .contact_form textarea {
    resize: vertical;
  }
  
  .submit_button {
    background-color: var(--accent-color);
    border: none;
    color: white;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    padding: 1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: 100%;
  }
  
  .submit_button:hover {
    background-color: #767b44;
    transform: translateY(-2px);
  }
  
  /* Map Section */
  .location_map {
    margin: 0 auto 6rem;
    max-width: 1200px;
  }
  
  .map_container {
    background-color: var(--content-background);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    overflow: hidden;
    position: relative;
  }
  
  .map_image {
    display: block;
    height: auto;
    width: 100%;
  }
  
  .map_overlay {
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
    bottom: 0;
    display: flex;
    justify-content: flex-start;
    left: 0;
    padding: 3rem;
    position: absolute;
    right: 0;
    top: 0;
  }
  
  .map_content {
    background-color: var(--content-background);
    border-radius: 10px;
    max-width: 400px;
    padding: 2.5rem;
    position: relative;
  }
  
  .map_content h2 {
    color: var(--text-dark);
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  
  .map_content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
  }
  
  .direction_link {
    background-color: var(--accent-color);
    border-radius: 0;
    color: white;
    display: inline-block;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .direction_link:hover {
    background-color: #767b44;
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .content_container {
      grid-template-columns: 1fr;
    }
    
    .contact_info {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: space-between;
    }
    
    .info_card {
      flex: 1 1 calc(33.333% - 1.35rem);
      min-width: calc(33.333% - 1.35rem);
    }
    
    .map_overlay {
      padding: 2rem;
    }
  }
  
  @media (max-width: 768px) {
    .contact_hero {
      margin-top: 100px;
      padding: 3rem 1.5rem;
    }
    
    .contact_hero h1 {
      font-size: 2rem;
    }
    
    .info_card {
      flex: 1 1 calc(50% - 1rem);
      min-width: calc(50% - 1rem);
    }
    
    .contact_form {
      grid-template-columns: 1fr;
      padding: 1.5rem;
    }
    
    .form_group.full_width {
      grid-column: span 1;
    }
    
    .form_header {
      padding: 1.5rem;
    }
    
    .map_overlay {
      align-items: flex-end;
      justify-content: center;
      padding: 1.5rem;
    }
    
    .map_content {
      max-width: 100%;
      padding: 1.5rem;
      width: 100%;
    }
  }
  
  @media (max-width: 576px) {
    .contact_hero {
      padding: 2.5rem 1.25rem;
    }
    
    .contact_hero h1 {
      font-size: 1.75rem;
    }
    
    .contact_info {
      flex-direction: column;
    }
    
    .info_card {
      flex: 1 1 100%;
      min-width: 100%;
    }
    
    .map_overlay {
      position: relative;
      padding: 0;
    }
    
    .map_content {
      border-radius: 0;
    }
    
    .map_image {
      display: none;
    }
  }










  /* Simple Cookie Policy Page Styles */
:root {
    --background-color: #e6e6fa;
    --content-background: #ffffff;
    --accent-color: #959a55;
    --text-dark: #333333;
    --text-light: #777777;
    --shadow: rgba(0, 0, 0, 0.1);
  }
  
  /* Cookie Policy Section */
  .cookie_policy {
    margin: 120px auto 4rem;
    max-width: 800px;
    padding: 0 1rem;
  }
  
  .policy_container {
    background-color: var(--content-background);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    overflow: hidden;
    padding: 3rem;
  }
  
  .policy_container h1 {
    color: var(--text-dark);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-align: center;
  }
  
  .policy_date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .policy_content {
    margin-bottom: 2.5rem;
  }
  
  .policy_content h2 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
  }
  
  .policy_content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  .cookie_list {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
  }
  
  .cookie_list li {
    margin-bottom: 0.5rem;
  }
  
  .cookie_list strong {
    color: var(--text-dark);
  }
  
  /* Cookie Choices */
  .cookie_choices {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
  }
  
  .choice_button {
    border: none;
    border-radius: 0;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .choice_button.accept {
    background-color: var(--accent-color);
    color: white;
  }
  
  .choice_button.accept:hover {
    background-color: #767b44;
    transform: translateY(-2px);
  }
  
  .choice_button.essential {
    background-color: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
  }
  
  .choice_button.essential:hover {
    background-color: rgba(149, 154, 85, 0.1);
    transform: translateY(-2px);
  }
  
  /* Policy Footer */
  .policy_footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    text-align: center;
  }
  
  .privacy_link {
    color: var(--text-dark);
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .privacy_link:hover {
    color: var(--accent-color);
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .cookie_policy {
      margin-top: 100px;
    }
    
    .policy_container {
      padding: 2rem;
    }
    
    .policy_container h1 {
      font-size: 1.75rem;
    }
  }
  
  @media (max-width: 576px) {
    .policy_container {
      padding: 1.5rem;
    }
    
    .cookie_choices {
      flex-direction: column;
    }
    
    .choice_button {
      width: 100%;
    }
  }









  /* Privacy Policy Page Styles */
:root {
    --background-color: #e6e6fa;
    --content-background: #ffffff;
    --accent-color: #959a55;
    --text-dark: #333333;
    --text-light: #777777;
    --shadow: rgba(0, 0, 0, 0.1);
  }
  
  /* Privacy Policy Section */
  .privacy_policy {
    margin: 120px auto 4rem;
    max-width: 800px;
    padding: 0 1rem;
  }
  
  .policy_container {
    background-color: var(--content-background);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    overflow: hidden;
    padding: 3rem;
  }
  
  .policy_container h1 {
    color: var(--text-dark);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-align: center;
  }
  
  .policy_date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .policy_content {
    margin-bottom: 2.5rem;
  }
  
  .policy_intro {
    margin-bottom: 2rem;
  }
  
  .policy_intro p {
    color: var(--text-light);
    line-height: 1.6;
  }
  
  .policy_section {
    margin-bottom: 2rem;
  }
  
  .policy_section:last-child {
    margin-bottom: 0;
  }
  
  .policy_section h2 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  
  .policy_section p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  .policy_section ul {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
  }
  
  .policy_section li {
    margin-bottom: 0.5rem;
  }
  
  /* Policy Footer */
  .policy_footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    text-align: center;
  }
  
  .cookie_link {
    color: var(--text-dark);
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .cookie_link:hover {
    color: var(--accent-color);
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .privacy_policy {
      margin-top: 100px;
    }
    
    .policy_container {
      padding: 2rem;
    }
    
    .policy_container h1 {
      font-size: 1.75rem;
    }
    
    .policy_section h2 {
      font-size: 1.2rem;
    }
  }
  
  @media (max-width: 576px) {
    .policy_container {
      padding: 1.5rem;
    }
  }













  /* Thank You Page Styles */
:root {
    --background-color: #e6e6fa;
    --content-background: #ffffff;
    --accent-color: #959a55;
    --text-dark: #333333;
    --text-light: #777777;
    --shadow: rgba(0, 0, 0, 0.1);
  }
  
  /* Thank You Section */
  .thankyou_section {
    margin: 120px auto 4rem;
    max-width: 900px;
    padding: 0 1rem;
  }
  
  .thankyou_container {
    background-color: var(--content-background);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    overflow: hidden;
    padding: 3rem;
    text-align: center;
  }
  
  .thankyou_icon {
    align-items: center;
    background-color: rgba(149, 154, 85, 0.1);
    border-radius: 50%;
    color: var(--accent-color);
    display: flex;
    height: 80px;
    justify-content: center;
    margin: 0 auto 1.5rem;
    width: 80px;
  }
  
  .thankyou_icon svg {
    height: 40px;
    width: 40px;
  }
  
  .thankyou_container h1 {
    color: var(--text-dark);
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .thankyou_message {
    margin: 0 auto 2.5rem;
    max-width: 700px;
  }
  
  .thankyou_message p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
  }
  
  /* Next Steps */
  .next_steps {
    margin-bottom: 2.5rem;
  }
  
  .next_steps h2 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .steps_container {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    margin: 0 auto;
    max-width: 800px;
  }
  
  .step_item {
    background-color: var(--content-background);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    box-shadow: 0 3px 10px var(--shadow);
    padding: 1.5rem;
    transition: transform 0.3s ease;
  }
  
  .step_item:hover {
    transform: translateY(-5px);
  }
  
  .step_icon {
    align-items: center;
    background-color: rgba(149, 154, 85, 0.1);
    border-radius: 50%;
    color: var(--accent-color);
    display: flex;
    height: 50px;
    justify-content: center;
    margin: 0 auto 1rem;
    width: 50px;
  }
  
  .step_icon svg {
    height: 25px;
    width: 25px;
  }
  
  .step_item h3 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }
  
  .step_item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .step_item a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .step_item a:hover {
    color: #767b44;
  }
  
  /* Return Home Button */
  .return_home {
    margin-top: 2rem;
  }
  
  .home_button {
    background-color: var(--accent-color);
    border-radius: 0;
    color: white;
    display: inline-block;
    font-weight: 500;
    padding: 0.75rem 2rem;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .home_button:hover {
    background-color: #767b44;
    color: white;
    transform: translateY(-2px);
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .steps_container {
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
  }
  
  @media (max-width: 768px) {
    .thankyou_section {
      margin-top: 100px;
    }
    
    .thankyou_container {
      padding: 2rem;
    }
    
    .thankyou_container h1 {
      font-size: 1.75rem;
    }
    
    .steps_container {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 576px) {
    .thankyou_container {
      padding: 1.5rem;
    }
    
    .thankyou_icon {
      height: 70px;
      width: 70px;
    }
    
    .thankyou_icon svg {
      height: 35px;
      width: 35px;
    }
    
    .steps_container {
      grid-template-columns: 1fr;
    }
  }














  /* Blog Page Styles */
:root {
    --background-color: #e6e6fa;
    --content-background: #ffffff;
    --accent-color: #959a55;
    --text-dark: #333333;
    --text-light: #777777;
    --shadow: rgba(0, 0, 0, 0.1);
  }
  
  /* Blog Header Section */
  .blog_header {
    background-color: var(--content-background);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    margin: 120px auto 3rem;
    max-width: 1200px;
    overflow: hidden;
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .header_container {
    margin: 0 auto;
    max-width: 800px;
  }
  
  .blog_header h1 {
    color: var(--text-dark);
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .blog_header p {
    color: var(--text-light);
    font-size: 1.125rem;
  }
  
  /* Blog Content Section */
  .blog_content {
    margin: 0 auto 4rem;
    max-width: 1200px;
  }
  
  .content_container {
    display: grid;
    gap: 3rem;
    grid-template-columns: 2fr 1fr;
  }
  
  /* Blog Post */
  .blog_post {
    background-color: var(--content-background);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    overflow: hidden;
  }
  
  .post_header {
    padding: 2.5rem 2.5rem 0;
  }
  
  .post_meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .post_category {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
  }
  
  .post_date {
    color: var(--text-light);
    font-size: 0.875rem;
  }
  
  .post_header h2 {
    color: var(--text-dark);
    font-size: 2.25rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
  }
  
  .post_author {
    align-items: center;
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .author_avatar {
    border-radius: 50%;
    height: 50px;
    object-fit: cover;
    width: 50px;
  }
  
  .author_info {
    display: flex;
    flex-direction: column;
  }
  
  .author_name {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 600;
  }
  
  .author_title {
    color: var(--text-light);
    font-size: 0.85rem;
  }
  
  .post_feature {
    margin: 0;
    overflow: hidden;
    width: 100%;
  }
  
  .feature_image {
    aspect-ratio: 16 / 9;
    height: auto;
    object-fit: cover;
    width: 100%;
  }
  
  .post_body {
    padding: 2.5rem;
  }
  
  .post_section {
    margin-bottom: 2.5rem;
  }
  
  .post_section:last-child {
    margin-bottom: 0;
  }
  
  .post_section h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
  
  .post_section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
  }
  
  .post_section p:last-child {
    margin-bottom: 0;
  }
  
  .post_footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 2.5rem;
  }
  
  .post_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }
  
  .tag {
    background-color: rgba(149, 154, 85, 0.1);
    border-radius: 4px;
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
  }
  
  .post_navigation {
    display: flex;
    justify-content: space-between;
  }
  
  .nav_link {
    display: flex;
    flex-direction: column;
    max-width: 45%;
  }
  
  .nav_direction {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }
  
  .nav_title {
    color: var(--accent-color);
    font-weight: 500;
  }
  
  /* Blog Sidebar */
  .blog_sidebar {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }
  
  .sidebar_widget {
    background-color: var(--content-background);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    overflow: hidden;
    padding: 2rem;
  }
  
  .sidebar_widget h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
  
  .related_list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  
  .related_item {
    margin: 0;
    padding: 0;
  }
  
  .related_link {
    display: flex;
    gap: 1rem;
  }
  
  .related_image {
    aspect-ratio: 1 / 1;
    border-radius: 5px;
    height: 70px;
    object-fit: cover;
    width: 70px;
  }
  
  .related_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .related_content h4 {
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }
  
  .related_date {
    color: var(--text-light);
    font-size: 0.8rem;
  }
  
  .category_list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .category_list li a {
    color: var(--text-dark);
    display: block;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  .category_list li a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
  }
  
  .subscribe p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  
  .subscribe_form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .subscribe_input {
    background-color: #f9f9f9;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-family: inherit;
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    width: 100%;
  }
  
  .subscribe_button {
    background-color: var(--accent-color);
    border: none;
    color: white;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: background-color 0.3s ease;
  }
  
  .subscribe_button:hover {
    background-color: #767b44;
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .content_container {
      grid-template-columns: 1fr;
    }
    
    .blog_sidebar {
      gap: 2rem;
    }
  }
  
  @media (max-width: 768px) {
    .blog_header {
      padding: 3rem 1.5rem;
      margin-top: 100px;
    }
    
    .blog_header h1 {
      font-size: 2rem;
    }
    
    .post_header, .post_body, .post_footer {
      padding: 2rem 1.5rem;
    }
    
    .post_header h2 {
      font-size: 1.75rem;
    }
    
    .post_section h3 {
      font-size: 1.25rem;
    }
    
    .post_navigation {
      flex-direction: column;
      gap: 1.5rem;
    }
    
    .nav_link {
      max-width: 100%;
    }
    
    .sidebar_widget {
      padding: 1.5rem;
    }
  }
  
  @media (max-width: 576px) {
    .blog_header {
      padding: 2.5rem 1.25rem;
    }
    
    .blog_header h1 {
      font-size: 1.75rem;
    }
    
    .post_header, .post_body, .post_footer {
      padding: 1.5rem 1.25rem;
    }
    
    .post_header h2 {
      font-size: 1.5rem;
    }
    
    .post_meta {
      flex-direction: column;
      gap: 0.5rem;
    }
    
    .post_tags {
      justify-content: center;
    }
  }