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

/* Base styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.logo{
    width: 200px;
    height: auto;
}

header{
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.menu-bar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 10px 20px;
    position: relative;
}

.navbar ul{
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar ul li{
    padding: 0px 15px;
    list-style-type: none;
}

.navbar ul li a{
    text-decoration: none;
    color: black;
    padding: 8px 12px;
    transition: all 0.3s ease;
    border-radius: 5px;
    font-size: 16px;
}

.navbar ul li a:hover{
    background-color: rgb(219, 216, 216);
    color: green;
    transform: translateY(-2px);
}

.hand{
    display: none;
    flex-direction: column;
    row-gap: 4px;
    background: none;
    outline: none;
    border: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.hand:hover {
    background-color: rgba(0,0,0,0.1);
}

.hand span{
    width: 25px;
    height: 3px;
    background-color: black;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hamburger animation */
.hand.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hand.active span:nth-child(2) {
    opacity: 0;
}

.hand.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.main-container1{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 0px;
    background-color: green;
}
.main-container1 h2{
    color: white;
}
.main-container1 p{
    margin: 10px 0px;
    color: white;
}
.main-container2{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 15px;
    margin: 25px 0px;
}

.main-container2 h2{
    color: green;
}

.main-container2 table td{
    padding: 8px;
}

input[type="text"]{
    padding: 5px;
}

input[type="email"]{
    padding: 5px;
}

textarea{
    padding: 5px;
}

.main-container2 button{
    padding: 8px;
    background-color: green;
    color: white;
    border: 1px solid black;
    border-radius: 10px;
    cursor: pointer;
}

.main-container3{
    text-align: center;
    margin: 20px 0px;
}
.main-container3 div{
    margin-top: 5px;
}
.main-container4{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 30px 0px;
}
.weekdays{
    margin: 15px 0px;
}
.weekend{
    margin: 15px 0px;
}

.map-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
    width: 100%;
}
.map-container iframe {
    width: 320px;
    max-width: 90vw;
    height: 200px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    border: 0;
    display: block;
}
.map-img {
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    display: block;
}
.map-overlay {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 1rem;
    pointer-events: none;
}
.map-container:hover .map-overlay {
    background: rgba(0,128,0,0.8);
}


/* Footer */
footer{
    background-color: rgb(6, 153, 6);
    color: white;
    padding: 20px 0;
    margin-top: 40px;
}

.foot-maincontainer{
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    border-bottom: 2px solid white;
    padding: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.foot-container1{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 200px;
}

.foot-container2{
    border-left: 2px solid white;
    padding-left: 20px;
    min-width: 300px;
}

.foot-container2 table {
    width: 100%;
}

.foot-container2 h3{
    color: white;
    margin: 20px;
    font-size: 16px;
}

.foot-container1 h3{
    color: white;
    margin: 20px 0;
    font-size: 18px;
}

.foot-maincontainer1{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    border-bottom: 2px solid white;
    padding: 20px;
}

.foot-container3{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.foot-container3 h3{
    color: white;
    font-size: 18px;
}

.icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.icons1{
    color: white;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
}

.icons1:hover {
    color: #333;
    background-color: white;
    transform: translateY(-3px);
}

.foot-maincontainer2{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.foot-maincontainer2 h3{
    color: white;
    margin: 0;
    font-size: 14px;
    text-align: center;
}

#list{
    margin: 10px 0;
    list-style: none;
}

#list li{
    list-style-type: none;
    padding: 8px 0;
}

#list li a{
    text-decoration: none;
    color: white;
    transition: color 0.3s ease;
}

#list li a:hover {
    color: black;
}

/* Responsive Design - Large Tablets and Small Laptops */
@media (max-width: 1024px) {
    .logo {
        width: 150px;
    }
    
    .main-container1 h2 {
        font-size: 1.8rem;
    }
    
    .main-container1 p {
        font-size: 1.1em;
    }
    
    .main-container2 h2 {
        font-size: 1.6rem;
    }
    
    .main-container2 table {
        width: 90%;
    }
    
    .main-container2 table td {
        padding: 10px;
    }
    
    input[type="text"],
    input[type="email"],
    textarea {
        padding: 8px;
        font-size: 14px;
    }
}

/* Medium Tablets */
@media (max-width: 900px) {
    .menu-bar {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 20px;
    }
    
    .logo {
        width: 120px;
        margin-bottom: 10px;
    }
    
    .navbar {
        width: 100%;
    }
    
    .navbar ul {
        flex-direction: column;
        width: 100%;
        display: none;
        background: white;
        position: absolute;
        top: 100%;
        left: 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        border-radius: 0 0 10px 10px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .navbar ul.active {
        display: flex;
        max-height: 500px;
    }
    
    .navbar ul li {
        width: 100%;
        text-align: center;
        padding: 0;
    }
    
    .navbar ul li a {
        width: 100%;
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
    }
    
    .navbar ul li a:hover {
        background-color: #f5f5f5;
        color: green;
    }
    
    .hand {
        display: flex;
    }
    
    .main-container1 h2 {
        font-size: 1.6rem;
    }
    
    .main-container1 p {
        font-size: 1em;
    }
    
    .main-container2 {
        margin: 20px 0px;
        row-gap: 12px;
    }
    
    .main-container2 h2 {
        font-size: 1.4rem;
    }
    
    .main-container2 table {
        width: 95%;
    }
    
    .main-container2 table td {
        padding: 8px;
    }
    
    input[type="text"],
    input[type="email"],
    textarea {
        padding: 6px;
        font-size: 13px;
    }
    
    .main-container2 button {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .main-container3 {
        margin: 15px 0px;
    }
    
    .main-container4 {
        margin: 25px 0px;
    }
    
    .weekdays,
    .weekend {
        margin: 12px 0px;
    }
    
    .foot-maincontainer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .foot-container2 {
        border-left: none;
        border-top: 2px solid white;
        padding-left: 0;
        padding-top: 20px;
        margin-top: 20px;
    }
}

/* Small Tablets and Large Phones */
@media (max-width: 768px) {
    .main-container1 {
        padding: 8px 0px;
    }
    
    .main-container1 h2 {
        font-size: 1.4rem;
    }
    
    .main-container1 p {
        font-size: 0.9em;
        margin: 8px 0px;
    }
    
    .main-container2 {
        margin: 15px 0px;
        row-gap: 10px;
    }
    
    .main-container2 h2 {
        font-size: 1.3rem;
    }
    
    .main-container2 table {
        width: 100%;
    }
    
    .main-container2 table td {
        padding: 6px;
        font-size: 14px;
    }
    
    input[type="text"],
    input[type="email"],
    textarea {
        padding: 5px;
        font-size: 12px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .main-container2 button {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .main-container3 {
        margin: 12px 0px;
    }
    
    .main-container3 div {
        margin-top: 3px;
        font-size: 14px;
    }
    
    .main-container4 {
        margin: 20px 0px;
    }
    
    .main-container4 h3 {
        font-size: 1.2rem;
    }
    
    .weekdays,
    .weekend {
        margin: 10px 0px;
        font-size: 14px;
    }
    
    .foot-maincontainer {
        padding: 15px;
    }
    
    .foot-container1,
    .foot-container2 {
        min-width: 200px;
    }
    
    .foot-container2 h3,
    .foot-container1 h3 {
        font-size: 14px;
        margin: 8px 0;
    }
    
    .foot-maincontainer1 {
        margin: 15px 0;
        padding: 15px;
    }
    
    .foot-container3 h3 {
        font-size: 16px;
    }
    
    .icons {
        gap: 10px;
    }
    
    .icons1 {
        font-size: 1.5rem !important;
        padding: 8px;
    }
}

/* Mobile Phones - Portrait */
@media (max-width: 480px) {
    .logo {
        width: 100px;
    }
    
    .menu-bar {
        padding: 10px 15px;
    }
    
    .hand {
        top: 15px;
        right: 15px;
    }
    
    .hand span {
        width: 20px;
        height: 2px;
    }
    
    .main-container1 {
        padding: 6px 0px;
    }
    
    .main-container1 h2 {
        font-size: 1.2rem;
    }
    
    .main-container1 p {
        font-size: 0.8em;
        margin: 6px 0px;
    }
    
    .main-container2 {
        margin: 12px 0px;
        row-gap: 8px;
    }
    
    .main-container2 h2 {
        font-size: 1.1rem;
    }
    
    .main-container2 table {
        width: 100%;
    }
    
    .main-container2 table td {
        padding: 4px;
        font-size: 12px;
    }
    
    input[type="text"],
    input[type="email"],
    textarea {
        padding: 4px;
        font-size: 11px;
    }
    
    .main-container2 button {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .main-container3 {
        margin: 10px 0px;
    }
    
    .main-container3 div {
        margin-top: 2px;
        font-size: 12px;
    }
    
    .main-container4 {
        margin: 15px 0px;
    }
    
    .main-container4 h3 {
        font-size: 1.1rem;
    }
    
    .weekdays,
    .weekend {
        margin: 8px 0px;
        font-size: 12px;
    }
    
    .foot-maincontainer {
        padding: 10px;
        gap: 15px;
    }
    
    .foot-container1,
    .foot-container2 {
        min-width: 200px;
    }
    
    .foot-container2 h3,
    .foot-container1 h3 {
        font-size: 14px;
        margin: 8px 0;
    }
    
    .foot-maincontainer1 {
        margin: 15px 0;
        padding: 15px;
    }
    
    .foot-container3 h3 {
        font-size: 16px;
    }
    
    .icons {
        gap: 8px;
    }
    
    .icons1 {
        font-size: 1.3rem !important;
        padding: 6px;
    }
    
    .foot-maincontainer2 h3 {
        font-size: 12px;
    }
}

/* Extra Small Phones */
@media (max-width: 360px) {
    .logo {
        width: 80px;
    }
    
    .main-container1 h2 {
        font-size: 1.1rem;
    }
    
    .main-container1 p {
        font-size: 0.7em;
    }
    
    .main-container2 h2 {
        font-size: 1rem;
    }
    
    .main-container2 table td {
        font-size: 11px;
    }
    
    input[type="text"],
    input[type="email"],
    textarea {
        font-size: 10px;
    }
    
    .main-container2 button {
        padding: 5px 10px;
        font-size: 11px;
    }
    
    .main-container3 div {
        font-size: 11px;
    }
    
    .main-container4 h3 {
        font-size: 1rem;
    }
    
    .weekdays,
    .weekend {
        font-size: 11px;
    }
}

/* Landscape Mode - Mobile and Tablet */
@media (orientation: landscape) and (max-width: 900px) {
    .main-container1 h2 {
        font-size: 1.4rem;
    }
    
    .main-container2 {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 20px;
    }
    
    .main-container2 > div {
        flex: 1;
        min-width: 300px;
    }
}

@media (orientation: landscape) and (max-width: 700px) {
    .navbar ul li {
        padding: 8px 10px;
    }
    
    .main-container2 {
        flex-direction: column;
    }
    
    .main-container2 > div {
        min-width: auto;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print Styles */
@media print {
    .hand,
    .main-container2 button {
        display: none !important;
    }
    
    .main-container1 {
        background-color: white !important;
        color: black !important;
    }
    
    .main-container1 h2,
    .main-container1 p {
        color: black !important;
    }
    
    footer {
        background-color: white !important;
        color: black !important;
    }
    
    .foot-container2 {
        border-left-color: black;
    }
    
    .icons1 {
        color: black !important;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .main-container2 {
        background-color: #2a2a2a;
        color: #fff;
    }
    
    input[type="text"],
    input[type="email"],
    textarea {
        background-color: #333;
        color: #fff;
        border-color: #555;
    }
    
    .main-container2 button {
        background-color: #4CAF50;
        color: white;
    }
}

/* Scroll Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

.why-varsav-section {
    background: #f5f5f5;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    margin: 24px auto 0 auto;
    padding: 24px 32px;
    max-width: 600px;
    text-align: center;
}
.why-varsav-section h2 {
    color: green;
    margin-bottom: 16px;
    font-size: 1.5rem;
}
.why-varsav-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.why-varsav-section ul li {
    margin: 10px 0;
    font-size: 1.1rem;
    color: #222;
}
@media (max-width: 600px) {
    .why-varsav-section {
        padding: 16px 8px;
        font-size: 1rem;
    }
    .why-varsav-section h2 {
        font-size: 1.1rem;
    }
    .why-varsav-section ul li {
        font-size: 1rem;
    }
}

.team-section {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    margin: 24px auto 0 auto;
    padding: 24px 32px;
    max-width: 700px;
    text-align: center;
}
.team-section h2 {
    color: green;
    margin-bottom: 18px;
    font-size: 1.5rem;
}
.team-members {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.team-member {
    background: #f5f5f5;
    border-radius: 10px;
    padding: 16px 12px;
    width: 180px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    margin-bottom: 16px;
}
.team-member img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 2px solid #e0e0e0;
}
.team-member h3 {
    margin: 8px 0 4px 0;
    font-size: 1.1rem;
    color: #222;
}
.team-member p {
    margin: 0;
    color: #555;
    font-size: 0.98rem;
}
@media (max-width: 700px) {
    .team-members {
        gap: 16px;
    }
    .team-member {
        width: 140px;
        padding: 12px 6px;
    }
    .team-member img {
        width: 60px;
        height: 60px;
    }
}
@media (max-width: 500px) {
    .team-members {
        flex-direction: column;
        align-items: center;
    }
    .team-member {
        width: 90%;
        max-width: 250px;
    }
}

/* Support Channels Section */
.support-channels-section {
  background: #f8fafc;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  margin: 32px auto 24px auto;
  padding: 32px 24px;
  max-width: 900px;
  text-align: center;
}
.support-channels-section h2 {
  color: #1e7d22;
  margin-bottom: 18px;
  font-size: 1.5rem;
}
.support-channels {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.support-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(30,125,34,0.07);
  padding: 18px 24px;
  min-width: 160px;
  margin: 8px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.support-card i {
  font-size: 2rem;
  color: #1e7d22;
}
.support-card span {
  font-size: 1.1rem;
  font-weight: bold;
  color: #222;
}
.support-card a {
  color: #fff;
  background: #1e7d22;
  border-radius: 6px;
  padding: 6px 16px;
  text-decoration: none;
  font-size: 1rem;
  margin-top: 6px;
  transition: background 0.2s;
}
.support-card a:hover {
  background: #005c1a;
}
.support-card.form {
  min-width: 220px;
  background: #e8f5e9;
}
.quick-inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.quick-inquiry-form input,
.quick-inquiry-form textarea {
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
  width: 100%;
  resize: none;
}
.quick-inquiry-form button {
  background: #1e7d22;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 0;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  margin-top: 4px;
  transition: background 0.2s;
}
.quick-inquiry-form button:hover {
  background: #005c1a;
}
@media (max-width: 700px) {
  .support-channels {
    gap: 10px;
  }
  .support-card {
    padding: 12px 6px;
    min-width: 120px;
    font-size: 0.95rem;
  }
}

/* Locations Section */
.locations-section {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  margin: 32px auto 24px auto;
  padding: 32px 24px;
  max-width: 900px;
  text-align: center;
}
.locations-section h2 {
  color: #1e7d22;
  margin-bottom: 18px;
  font-size: 1.5rem;
}
.locations-list {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.location-card {
  background: #f5f5f5;
  border-radius: 10px;
  padding: 16px 12px;
  width: 220px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  margin-bottom: 16px;
  text-align: center;
}
.location-card h3 {
  color: #1e7d22;
  margin-bottom: 8px;
}
.location-card p {
  color: #333;
  margin-bottom: 10px;
}
.location-card a {
  color: #fff;
  background: #1e7d22;
  border-radius: 6px;
  padding: 6px 16px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.2s;
}
.location-card a:hover {
  background: #005c1a;
}
@media (max-width: 700px) {
  .locations-list {
    gap: 10px;
  }
  .location-card {
    width: 140px;
    padding: 12px 6px;
    font-size: 0.95rem;
  }
}

/* Support Team Section */
.support-team-section {
  background: #f8fafc;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  margin: 32px auto 24px auto;
  padding: 32px 24px;
  max-width: 900px;
  text-align: center;
}
.support-team-section h2 {
  color: #1e7d22;
  margin-bottom: 18px;
  font-size: 1.5rem;
}
.support-team-members {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.support-team-member {
  background: #fff;
  border-radius: 10px;
  padding: 16px 12px;
  width: 180px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  margin-bottom: 16px;
  text-align: center;
}
.support-team-member img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  border: 2px solid #e0e0e0;
}
.support-team-member h3 {
  margin: 8px 0 4px 0;
  font-size: 1.1rem;
  color: #222;
}
.support-team-member p {
  margin: 0;
  color: #555;
  font-size: 0.98rem;
}
@media (max-width: 700px) {
  .support-team-members {
    gap: 16px;
  }
  .support-team-member {
    width: 140px;
    padding: 12px 6px;
  }
  .support-team-member img {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 500px) {
  .support-team-members {
    flex-direction: column;
    align-items: center;
  }
  .support-team-member {
    width: 90%;
    max-width: 250px;
  }
}

/* FAQ Accordion (Contact Focused) */
.faq-section {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(30,125,34,0.07);
  margin: 32px auto 0 auto;
  padding: 24px 32px;
  max-width: 700px;
}
.faq-section h2 {
  color: #1e7d22;
  margin-bottom: 18px;
  font-size: 1.5rem;
  text-align: center;
}
.faq-item {
  margin-bottom: 12px;
}
.faq-question {
  width: 100%;
  background: #e8f5e9;
  color: #1e7d22;
  border: none;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 1.1rem;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  outline: none;
  margin-bottom: 4px;
}
.faq-question.active, .faq-question:hover {
  background: #1e7d22;
  color: #fff;
}
.faq-answer {
  background: #e6f2ea !important;
  border-left: 4px solid #1e7d22;
  border-radius: 0 8px 8px 0;
  margin: 0 0 8px 0;
  padding: 0 20px !important;
  color: #222 !important;
  font-size: 1.08rem !important;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s, background 0.3s;
  box-shadow: 0 2px 8px rgba(30,125,34,0.04);
  opacity: 1 !important;
  visibility: visible !important;
}
.faq-question.active + .faq-answer {
  padding: 20px 24px !important;
  max-height: 600px !important;
  background: #d2eadd !important;
  color: #111 !important;
  border-left: 4px solid #1e7d22 !important;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 2;
}
@media (max-width: 600px) {
  .faq-section {
    padding: 12px 2px;
    font-size: 1rem;
  }
  .faq-section h2 {
    font-size: 1.1rem;
  }
  .faq-question {
    font-size: 1rem;
    padding: 8px 8px;
  }
  .faq-answer {
    font-size: 0.98rem;
    padding: 0 8px !important;
  }
}

/* Social Media Wall */
.social-wall-section {
  background: #f8fafc;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  margin: 32px auto 24px auto;
  padding: 32px 24px;
  max-width: 700px;
  text-align: center;
}
.social-wall-section h2 {
  color: #1e7d22;
  margin-bottom: 18px;
  font-size: 1.5rem;
}
.social-wall {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.social-wall a {
  color: #fff;
  background: #1e7d22;
  border-radius: 8px;
  padding: 10px 24px;
  text-decoration: none;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}
.social-wall a:hover {
  background: #005c1a;
}
.social-wall i {
  font-size: 1.5rem;
}
@media (max-width: 600px) {
  .social-wall-section {
    padding: 16px 4px;
    font-size: 1rem;
  }
  .social-wall-section h2 {
    font-size: 1.1rem;
  }
  .social-wall {
    gap: 10px;
    flex-direction: column;
    align-items: center;
  }
  .social-wall a {
    font-size: 1rem;
    padding: 8px 12px;
  }
  .social-wall i {
    font-size: 1.2rem;
  }
}