 /* <style> */
 :root {
     --primary: #2C5530;
     --primary-light: #3A7D44;
     --secondary: #D4A574;
     --light: #F8F5F0;
     --dark: #1A1A1A;
     --gray: #6C757D;
     --gray-light: #E9ECEF;
     --white: #FFFFFF;
     --transition: all 0.3s ease;
 }

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

 body {
     font-family: 'Inter', sans-serif;
     color: var(--dark);
     background: var(--white);
     line-height: 1.6;
 }

 h1,
 h2,
 h3,
 h4,
 h5 {
     font-family: 'Playfair Display', serif;
     font-weight: 600;
     color: var(--primary);
 }

 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 /* Header Styles */
 .main-header {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     background: var(--white);
     box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
     z-index: 1000;
     padding: 15px 0;
     transition: var(--transition);
 }

 .header-content {
     display: flex;
     align-items: center;
     justify-content: space-between;
 }

 .logo {
     font-family: 'Playfair Display', serif;
     font-size: 1.8rem;
     font-weight: 700;
     color: var(--primary);
     text-decoration: none;
     display: flex;
     align-items: center;
 }

 .logo img {
     height: 50px;
     margin-right: 10px;
 }

 .main-nav ul {
     display: flex;
     list-style: none;
     margin: 0;
     padding: 0;
 }

 .main-nav li {
     margin: 0 15px;
     position: relative;
 }

 .main-nav a {
     color: var(--dark);
     text-decoration: none;
     font-weight: 500;
     font-size: 1rem;
     transition: var(--transition);
     padding: 5px 0;
     position: relative;
 }

 .main-nav a:hover {
     color: var(--primary);
 }

 .main-nav a.active {
     color: var(--primary);
 }

 .main-nav a.active::after {
     content: '';
     position: absolute;
     width: 100%;
     height: 2px;
     background: var(--primary);
     bottom: 0;
     left: 0;
 }

 .nav-dropdown {
     position: relative;
 }

 .dropdown-menu {
     position: absolute;
     top: 100%;
     left: 0;
     background: var(--white);
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
     min-width: 220px;
     padding: 15px 0;
     opacity: 0;
     visibility: hidden;
     transform: translateY(10px);
     transition: var(--transition);
 }

 .nav-dropdown:hover .dropdown-menu {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
 }

 .dropdown-menu li {
     margin: 0;
 }

 .dropdown-menu a {
     padding: 10px 25px;
     display: block;
     white-space: nowrap;
 }

 .mobile-toggle {
     display: none;
     font-size: 1.5rem;
     cursor: pointer;
     color: var(--primary);
 }

 .header-actions {
     display: flex;
     align-items: center;
     gap: 15px;
 }

 .btn {
     padding: 12px 28px;
     border-radius: 4px;
     font-weight: 500;
     text-decoration: none;
     display: inline-block;
     transition: var(--transition);
     border: none;
     cursor: pointer;
     font-size: 1rem;
 }

 .btn-primary {
     background: var(--primary);
     color: var(--white);
 }

 .btn-primary:hover {
     background: var(--primary-light);
     color: var(--white);
     transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(44, 85, 48, 0.2);
 }

 .btn-outline {
     border: 2px solid var(--primary);
     color: var(--primary);
     background: transparent;
 }

 .btn-outline:hover {
     background: var(--primary);
     color: var(--white);
 }

 /* Hero Section with Slideshow */
 .hero {
     padding: 160px 0 100px;
     position: relative;
     color: var(--white);
     text-align: center;
     overflow: hidden;
 }

 .hero-slideshow {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 0;
 }

 .hero-slide {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     opacity: 0;
     transition: opacity 1.5s ease-in-out;
     background-size: cover;
     background-position: center;
 }

 .hero-slide.active {
     opacity: 1;
 }

 .hero-slide::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7));
     z-index: 1;
 }

 .hero .container {
     position: relative;
     z-index: 2;
 }

 .hero h1 {
     font-size: 3rem;
     color: var(--white);
     margin-bottom: 20px;
     line-height: 1.2;
 }

 .hero p {
     font-size: 1.2rem;
     max-width: 700px;
     margin: 0 auto 40px;
     opacity: 0.9;
 }

 /* Footer */
 .main-footer {
     background: var(--dark);
     color: var(--white);
     padding: 60px 0 30px;
     margin-top: 80px;
 }

 .footer-content {
     display: flex;
     flex-wrap: wrap;
     gap: 40px;
     margin-bottom: 40px;
 }

 .footer-content > div {
     flex: 1 1 250px;
     min-width: 250px;
 }

 .footer-logo {
     font-family: 'Playfair Display', serif;
     font-size: 1.8rem;
     font-weight: 700;
     color: var(--white);
     text-decoration: none;
     margin-bottom: 20px;
     display: inline-block;
 }

 .footer-about p {
     opacity: 0.8;
     margin-bottom: 20px;
 }

 .footer-title {
     color: var(--white);
     margin-bottom: 25px;
     font-size: 1.3rem;
 }

 .footer-links ul {
     list-style: none;
     padding: 0;
 }

 .footer-links li {
     margin-bottom: 12px;
 }

 .footer-links a {
     color: rgba(255, 255, 255, 0.8);
     text-decoration: none;
     transition: var(--transition);
 }

 .footer-links a:hover {
     color: var(--secondary);
     padding-left: 5px;
 }

 .footer-contact p {
     margin-bottom: 15px;
     display: flex;
     align-items: flex-start;
     opacity: 0.8;
 }

 .footer-contact i {
     margin-right: 10px;
     color: var(--secondary);
     margin-top: 5px;
 }

 .social-links {
     display: flex;
     gap: 15px;
     margin-top: 20px;
 }

 .social-links a {
     width: 40px;
     height: 40px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--white);
     text-decoration: none;
     transition: var(--transition);
 }

 .social-links a:hover {
     background: var(--secondary);
     transform: translateY(-3px);
 }

 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     padding-top: 30px;
     text-align: center;
     opacity: 0.7;
     font-size: 0.9rem;
 }

 .footer-bottom span {
     color: var(--secondary);
     font-weight: 600;
 }

 /* Responsive */
 @media (max-width: 1200px) {
     /* Footer adjustments */
     .main-footer {
         padding: 50px 0 25px;
         margin-top: 60px;
     }

     .footer-logo {
         font-size: 1.6rem;
     }

     .footer-title {
         font-size: 1.2rem;
     }
     .container {
         max-width: 960px;
     }

     .main-header {
         padding: 12px 0;
     }

     .logo img {
         height: 45px;
     }

     .main-nav li {
         margin: 0 12px;
     }

     .header-actions {
         gap: 12px;
     }

     .header-actions .btn {
         padding: 10px 20px;
         font-size: 0.95rem;
     }
 }

 @media (max-width: 992px) {
     .mobile-toggle {
         display: block;
     }

     .main-nav {
         position: fixed;
         top: 70px;
         left: 0;
         width: 100%;
         background: var(--white);
         padding: 20px;
         box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
         transform: translateY(-100%);
         opacity: 0;
         visibility: hidden;
         transition: var(--transition);
         z-index: 999;
         max-height: calc(100vh - 70px);
         overflow-y: auto;
     }

     .main-nav.active {
         transform: translateY(0);
         opacity: 1;
         visibility: visible;
     }

     .main-nav ul {
         flex-direction: column;
     }

     .main-nav li {
         margin: 10px 0;
     }

     .dropdown-menu {
         position: static;
         box-shadow: none;
         padding-left: 20px;
         opacity: 1;
         visibility: visible;
         transform: none;
         display: none;
         background: var(--light);
         margin-top: 5px;
         border-radius: 5px;
     }

     .nav-dropdown:hover .dropdown-menu {
         display: block;
     }

     .header-actions {
         flex-wrap: wrap;
         gap: 8px;
     }

     .header-actions .btn {
         font-size: 0.85rem;
         padding: 8px 16px;
     }

     .hero h1 {
         font-size: 2.2rem;
     }

     .hero {
         padding: 140px 0 80px;
     }

     /* Footer responsive - Tablet */
     .main-footer {
         padding: 45px 0 20px;
     }

     .footer-logo {
         font-size: 1.5rem;
     }

     .footer-contact p {
         font-size: 0.95rem;
     }

     .social-links a {
         width: 38px;
         height: 38px;
         font-size: 0.9rem;
     }
 }

 @media (max-width: 768px) {
     .logo img {
         height: 42px;
     }

     .main-header {
         padding: 10px 0;
     }

     .hero {
         padding: 130px 0 60px;
     }

     .hero h1 {
         font-size: 2rem;
     }

     /* Footer responsive - Mobile */
     .main-footer {
         padding: 40px 0 20px;
         margin-top: 50px;
     }

     .main-footer .row {
         display: flex;
         flex-direction: column;
         gap: 30px;
     }

     .main-footer .col-lg-4,
     .main-footer .col-lg-2,
     .main-footer .col-lg-3,
     .main-footer .col-md-6 {
         width: 100%;
         max-width: 100%;
         flex: none;
         margin-bottom: 0 !important;
     }

     .footer-logo {
         font-size: 1.4rem;
         margin-bottom: 15px;
     }

     .footer-about p {
         font-size: 0.95rem;
         line-height: 1.6;
     }

     .footer-title {
         font-size: 1.15rem;
         margin-bottom: 20px;
     }

     .footer-links li {
         margin-bottom: 10px;
     }

     .footer-links a {
         font-size: 0.95rem;
     }

     /* Footer links horizontal on mobile */
     .footer-links ul {
         display: flex;
         flex-wrap: wrap;
         justify-content: center;
         gap: 10px 15px;
     }

     .footer-links li {
         margin-bottom: 0;
     }

     .footer-links a {
         display: inline-block;
         padding: 6px 12px;
         background: rgba(255, 255, 255, 0.05);
         border-radius: 5px;
         transition: var(--transition);
     }

     .footer-links a:hover {
         background: rgba(255, 255, 255, 0.1);
         padding-left: 12px;
     }

     .footer-contact p {
         font-size: 0.9rem;
         margin-bottom: 12px;
     }

     /* Footer contact horizontal layout on mobile */
     .footer-contact {
         display: flex;
         flex-wrap: wrap;
         justify-content: center;
         gap: 10px 15px;
     }

     .footer-contact p {
         flex: 0 0 auto;
         margin-bottom: 0;
         padding: 6px 12px;
         background: rgba(255, 255, 255, 0.05);
         border-radius: 5px;
         font-size: 0.9rem;
     }

     .footer-contact i {
         font-size: 0.9rem;
     }

     .social-links {
         justify-content: center;
         margin-top: 25px;
     }

     .social-links a {
         width: 42px;
         height: 42px;
     }

     .footer-bottom {
         font-size: 0.85rem;
         padding-top: 25px;
     }
 }

 @media (max-width: 576px) {
     .logo img {
         height: 40px;
     }

     .logo {
         font-size: 1.5rem;
     }

     .mobile-toggle {
         font-size: 1.3rem;
     }

     .header-actions {
         display: none;
     }

     .hero h1 {
         font-size: 1.6rem;
     }

     .hero p {
         font-size: 0.95rem;
         padding: 0 10px;
     }

     /* Footer responsive - Mobile Small */
     .main-footer {
         padding: 35px 0 18px;
         margin-top: 45px;
     }

     .main-footer .row {
         display: flex;
         flex-direction: column;
         gap: 25px;
     }

     .main-footer .col-lg-4,
     .main-footer .col-lg-2,
     .main-footer .col-lg-3,
     .main-footer .col-md-6 {
         width: 100%;
         max-width: 100%;
         margin-bottom: 0 !important;
     }

     .footer-logo {
         font-size: 1.35rem;
     }

     .footer-about p {
         font-size: 0.92rem;
     }

     .footer-title {
         font-size: 1.12rem;
         margin-bottom: 18px;
     }

     .footer-links a,
     .footer-contact p {
         font-size: 0.88rem;
     }

     /* Footer contact horizontal with wrap */
     .footer-contact {
         display: flex;
         flex-wrap: wrap;
         justify-content: center;
         gap: 8px 12px;
     }

     .footer-contact p {
         flex: 0 0 auto;
         margin-bottom: 0;
         padding: 5px 10px;
         background: rgba(255, 255, 255, 0.05);
         border-radius: 4px;
         font-size: 0.88rem;
     }

     /* Footer links horizontal with wrap */
     .footer-links ul {
         display: flex;
         flex-wrap: wrap;
         justify-content: center;
         gap: 8px 12px;
     }

     .footer-links a {
         padding: 5px 10px;
         background: rgba(255, 255, 255, 0.05);
         border-radius: 4px;
     }

     .social-links {
         gap: 10px;
     }

     .social-links a {
         width: 38px;
         height: 38px;
     }

     .footer-bottom {
         font-size: 0.82rem;
         padding-top: 22px;
     }
 }

 @media (max-width: 480px) {
     .logo img {
         height: 38px;
     }

     .main-header {
         padding: 8px 0;
     }

     .hero h1 {
         font-size: 1.6rem;
     }

     .hero p {
         font-size: 0.95rem;
     }

     /* Footer responsive - Small Mobile */
     .main-footer {
         padding: 35px 0 15px;
         margin-top: 40px;
     }

     .main-footer .row {
         display: flex;
         flex-direction: column;
         gap: 20px;
         text-align: center;
     }

     .main-footer .col-lg-4,
     .main-footer .col-lg-2,
     .main-footer .col-lg-3,
     .main-footer .col-md-6 {
         width: 100%;
         max-width: 100%;
         margin-bottom: 0 !important;
     }

     .footer-logo {
         font-size: 1.3rem;
         display: block;
         margin: 0 auto 15px;
     }

     .footer-about {
         margin-bottom: 30px;
     }

     .footer-about p {
         font-size: 0.9rem;
         text-align: center;
     }

     .footer-title {
         font-size: 1.1rem;
         margin-bottom: 18px;
         text-align: center;
     }

     .footer-links ul {
         display: flex;
         flex-wrap: wrap;
         justify-content: center;
         gap: 6px 10px;
     }

     .footer-links li {
         margin-bottom: 0;
     }

     .footer-links a {
         font-size: 0.85rem;
         padding: 4px 8px;
         background: rgba(255, 255, 255, 0.05);
         border-radius: 4px;
         white-space: nowrap;
     }

     .footer-contact p {
         font-size: 0.85rem;
         justify-content: center;
         text-align: left;
         margin: 0 auto 10px;
         max-width: 280px;
     }

     /* Footer contact horizontal with wrap on small mobile */
     .footer-contact {
         display: flex;
         flex-wrap: wrap;
         justify-content: center;
         gap: 6px 10px;
         max-width: 100%;
     }

     .footer-contact p {
         flex: 0 0 auto;
         margin: 0;
         padding: 4px 8px;
         background: rgba(255, 255, 255, 0.05);
         border-radius: 4px;
         font-size: 0.8rem;
         max-width: none;
         text-align: center;
         white-space: nowrap;
     }

     .footer-contact p:has(br) {
         white-space: normal;
         max-width: 200px;
     }

     .social-links {
         justify-content: center;
         gap: 12px;
         margin-top: 20px;
     }

     .social-links a {
         width: 40px;
         height: 40px;
         font-size: 0.9rem;
     }

     .footer-bottom {
         font-size: 0.8rem;
         padding-top: 20px;
         line-height: 1.6;
     }
 }

 /* </style> */
