 /* Footer Section Styles */
 .footer {
     background: linear-gradient(to bottom, #2c3e50, #1a2530);
     color: white;
     padding: 4rem 2rem 2rem;
     position: relative;
     overflow: hidden;
 }

 .footer::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 1px;
     background: linear-gradient(to right, transparent, rgba(107, 151, 70, 0.5), transparent);
 }

 .container {
     max-width: 1200px;
     margin: 0 auto;
 }

 .footer-content {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 2.5rem;
     margin-bottom: 3rem;
 }

 .footer-logo {
     margin-bottom: 1.5rem;
     opacity: 0;
     transform: translateY(20px);
 }

 .footer-logo img {
     height: 50px;
     width: auto;
     margin-bottom: 1rem;
 }

 .footer-logo h3 {
     font-family: 'Playfair Display', serif;
     font-size: 1.8rem;
     color: #6b9746;
     margin-bottom: 0.5rem;
 }

 .footer-logo p {
     color: #ccc;
     line-height: 1.6;
     max-width: 300px;
 }

 .footer-heading {
     font-family: 'Playfair Display', serif;
     font-size: 1.4rem;
     margin-bottom: 1.5rem;
     color: #6b9746;
     position: relative;
     padding-bottom: 0.5rem;
 }

 .footer-heading::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 50px;
     height: 2px;
     background-color: #6b9746;
 }

 .footer-links {
     list-style: none;
 }

 .footer-links li {
     margin-bottom: 0.8rem;
 }

 .footer-links a {
     color: #ccc;
     text-decoration: none;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     gap: 0.5rem;
 }

 .footer-links a:hover {
     color: #6b9746;
     transform: translateX(5px);
 }

 .footer-links a i {
     font-size: 0.8rem;
     color: #6b9746;
 }

 .contact-info {
     list-style: none;
 }

 .contact-info li {
     margin-bottom: 1rem;
     display: flex;
     align-items: flex-start;
     gap: 1rem;
 }

 .contact-info i {
     color: #6b9746;
     font-size: 1.2rem;
     margin-top: 0.2rem;
 }

 .contact-info span {
     color: #ccc;
     line-height: 1.5;
 }

 .social-links {
     display: flex;
     gap: 1rem;
     margin-top: 1.5rem;
 }

 .social-links a {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     color: #ccc;
     transition: all 0.3s ease;
 }

 .social-links a:hover {
     background: #6b9746;
     color: white;
     transform: translateY(-3px);
 }

 .newsletter-form {
     margin-top: 1.5rem;
 }

 .newsletter-input {
     width: 100%;
     padding: 0.8rem 1rem;
     background: rgba(255, 255, 255, 0.1);
     border: 1px solid rgba(255, 255, 255, 0.2);
     border-radius: 4px;
     color: white;
     margin-bottom: 1rem;
     font-family: 'Montserrat', sans-serif;
 }

 .newsletter-input:focus {
     outline: none;
     border-color: #6b9746;
 }

 .btn-newsletter {
     background: #3e6b1a;
     color: #ffffff;
     border: none;
     padding: 0.8rem 1.5rem;
     border-radius: 4px;
     font-family: 'Montserrat', sans-serif;
     font-weight: 500;
     cursor: pointer;
     transition: all 0.3s ease;
     width: 100%;
     height: 42px;
 }

 .btn-newsletter:hover {
     background: #5a8040;
 }

 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     padding-top: 2rem;
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
     gap: 1rem;
 }

 .copyright {
     color: #999;
     font-size: 0.9rem;
 }

 .footer-bottom-links {
     display: flex;
     gap: 1.5rem;
 }

 .footer-bottom-links a {
     color: #999;
     text-decoration: none;
     font-size: 0.9rem;
     transition: color 0.3s ease;
 }

 .footer-bottom-links a:hover {
     color: #6b9746;
 }

 .back-to-top {
     position: absolute;
     right: 2rem;
     bottom: 2rem;
     width: 50px;
     height: 50px;
     background: #6b9746;
     color: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     text-decoration: none;
     transition: all 0.3s ease;
     opacity: 0;
     transform: translateY(20px);
 }

 .back-to-top.visible {
     opacity: 1;
     transform: translateY(0);
 }

 .back-to-top:hover {
     background: #5a8040;
     transform: translateY(-5px);
 }

 /* Animations */
 @keyframes fadeInUp {
     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     .footer {
         padding: 3rem 1.5rem 2rem;
     }

     .footer-content {
         grid-template-columns: 1fr;
         gap: 2rem;
     }

     .footer-bottom {
         flex-direction: column;
         text-align: center;
     }

     .footer-bottom-links {
         justify-content: center;
     }

     .back-to-top {
         right: 1rem;
         bottom: 1rem;
     }
 }

 @media (max-width: 480px) {
     .footer-bottom-links {
         flex-direction: column;
         gap: 0.5rem;
     }

     .social-links {
         justify-content: center;
     }
 }