 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

 .carousel-slide {
     display: none;
 }

 .carousel-slide.active {
     display: block;
 }

 .section {
     min-height: 100vh;
     height: auto;
     /* padding: 100px 10%; */
     position: relative;
     overflow: hidden;
     display: flex;
     flex-direction: column;
     justify-content: center;
     margin: 50px 10px 50px 10px;
 }

 .section::before {
     content: '';
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-size: cover;
     background-position: center;
     background-attachment: fixed;
     z-index: -1;
     opacity: 0;
     transition: opacity 1s ease-in-out;
 }

 .section.active::before {
     opacity: 0.2;
 }

 #about::before {
     background-image: url('../img/entrepreneur.jpg');
 }

 #vision::before {
     background-image: url('../img/entrepreneur2.jpg');
 }

 #mission::before {
     background-image: url('../img/entrepreneur3.jpg');
 }

 .content {
     background-color: rgba(255, 255, 255, 0.9);
     padding: 40px;
     border-radius: 15px;
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
     transform: translateY(50px);
     opacity: 0;
     transition: all 0.8s ease;
 }

 .section.active .content {
     transform: translateY(0);
     opacity: 1;
 }

 h1 {
     font-size: 2.5rem;
     margin-bottom: 30px;
     color: #2c3e50;
     position: relative;
     display: inline-block;
 }

 h1::after {
     content: '';
     position: absolute;
     bottom: -10px;
     left: 0;
     width: 60px;
     height: 4px;
     background: linear-gradient(180deg, rgb(201, 176, 107) 0%, rgba(242, 223, 172, 0.8) 0%, rgb(196, 163, 70) 100%);
     border-radius: 2px;
 }

 p {
     font-size: 1.1rem;
     line-height: 1.8;
     margin-bottom: 20px;
 }

 .highlight {
     color: rgb(196, 163, 70);
     font-weight: 600;
 }

 .icon {
     font-size: 2rem;
     margin-bottom: 20px;
     color: #3498db;
     display: flex;
     flex-direction: column;
 }

 @media (max-width: 768px) {
     .section {
         padding: 80px 5%;
     }

     .content {
         padding: 30px;
     }

     h1 {
         font-size: 2rem;
     }
 }

 /* Transition for dropdown */
 .group-hover\:block {
     transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
 }

 /* Dropdown styles */
 .group:hover .group-hover\:block {
     display: block;
     opacity: 1;
     transform: translateY(0);
 }

 /* Dropdown item hover effect */
 .hover\:bg-gray-100:hover {
     background-color: #f7fafc;
     border-radius: 5px;
     transition: background-color 0.2s ease-in-out;
 }

 /* Dropdown shadow */
 .shadow-lg {
     box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
 }

 /* Dropdown icon animation */
 .dropdown-menu {
     transition: transform 0.2s ease-in-out;
 }

 .group:hover .dropdown-menu {
     transform: rotate(180deg);
 }

 /* Submenu styles */
 .hover-submenu-trigger:hover+.hover-submenu,
 .hover-submenu:hover {
     display: block;
     opacity: 1;
     transform: translateY(90);
 }

 .hover-submenu {
     transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
     display: none;
     opacity: 0;
     transform: translateY(-10px);
 }

 /* Base Styles */
 :root {
     --primary-color: #3a86ff;
     --secondary-color: #8338ec;
     --accent-color: #ff006e;
     --text-dark: #2b2d42;
     --text-light: #f8f9fa;
     --card-bg: #ffffff;
     --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     --section-padding: 80px;
     --section-margin: 80px;
     --content-max-width: 1200px;
 }

 * {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 body {
     font-family: 'Montserrat', sans-serif;
     background: linear-gradient(180deg, rgb(201, 176, 107) 0%, rgba(242, 223, 172, 0.8) 0%, rgb(196, 163, 70) 100%);
     color: #000000;
     line-height: 1.6;
 }

 .container {
     width: 100%;
     max-width: var(--content-max-width);
     margin: 0 auto;
     padding: 0 20px;
     position: relative;
 }

 /* Navigation */
 .navbar {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 10px 0;
     flex-wrap: wrap;
     position: sticky;
     top: 0;
     z-index: 1000;
     background: linear-gradient(360px, rgb(201, 176, 107) 0%, rgba(242, 223, 172, 0.8) 0%, rgb(196, 163, 70) 100%);
     backdrop-filter: blur(8px);
     transition: background-color 0.3s ease;
     border-radius: 0 0 20px 20px;
     border: none;
 }

 .logo-container {
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .company-logo {
     height: 62px;
     width: 62px;
     object-fit: cover;
     border-radius: 50%;
     margin-left: 20px;
 }

 .company-name {
     font-weight: 700;
     font-size: 1.875rem;
     color: #000000;
 }

 .nav-links {
     display: flex;
     gap: 30px;
     list-style: none;
     flex-wrap: wrap;
     margin-right: 20px;
 }

 .nav-link {
     font-weight: 300;
     font-size: 1.25rem;
     color: #000000;
     text-decoration: none;
     position: relative;
     padding-bottom: 7px;
 }

 .nav-link:hover {
     color: #ffffff;
 }

 .nav-link::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 0;
     width: 0;
     height: 20px;
     background-image: url('activecontent.svg');
     background-size: 100% 100%;
     transition: width 0.3s ease, left 0.3s ease;
 }

 .nav-link:hover::after {
     width: 100%;
     left: 0;
 }

 .nav-link.active::after {
     width: 100%;
     left: 0;
     background-image: url('activecontent.svg');
     transition: none;
 }

 .account-dropdown {
     display: flex;
     align-items: center;
     gap: 5px;
     position: relative;
 }

 .dropdown-arrow {
     transition: transform 0.3s ease;
 }

 .account-dropdown:hover .dropdown-arrow {
     transform: rotate(180deg);
 }

 .dropdown-content {
     position: absolute;
     top: 100%;
     background-color: white;
     min-width: 160px;
     box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
     border-radius: 4px;
     padding: 10px 0;
     list-style: none;
     opacity: 0;
     visibility: hidden;
     transform: translateY(-10px);
     transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
     z-index: 1;
 }

 .account-dropdown:hover .dropdown-content {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
 }

 .dropdown-content li {
     padding: 8px 16px;
 }

 .dropdown-content li a {
     color: #000;
     text-decoration: none;
     display: block;
     transition: color 0.2s;
 }

 .dropdown-content li:hover a {
     color: #555;
 }

 /* Hero Section */
 .hero {
     position: relative;
     margin: var(--section-margin) 0;
     border-radius: 20px;
     padding: var(--section-padding) 0;
     background: linear-gradient(90deg, rgb(196, 163, 70) 0%, rgb(255, 255, 255) 100%);
     min-height: 600px;
 }

 .hero-content {
     position: relative;
     z-index: 2;
     padding: 50px;
     text-align: center;
 }

 .hero-heading {
     font-size: 3.35rem;
     font-weight: 600;
     margin-bottom: 20px;
     text-align: left;
 }

 .hero-description {
     font-size: 2.25rem;
     font-weight: 400;
     max-width: 800px;
     margin: -1.9rem auto 0px;
     text-align: left;
 }

 .hero-design {
     position: absolute;
     left: 50%;
     top: 50%;
     transform: translate(calc(-77% - 20px), calc(-75% - 20px));
     width: 50%;
     max-width: 700px;
     height: auto;
     object-fit: cover;
     border-radius: 10px;
     z-index: -1;
 }

 .hero-image {
     position: absolute;
     right: 0;
     left: 50%;
     top: 62%;
     transform: translate(calc(90% - 20px), calc(-95% - 20px));
     width: 60%;
     max-width: 300px;
     height: 400px;
     object-fit: cover;
     border-radius: 10px;
 }

 .hero-features {
     display: flex;
     justify-content: space-around;
     flex-wrap: wrap;
     gap: 20px;
     margin-top: 180px;
     position: relative;
 }

 .feature-card {
     background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 100%);
     border-radius: 10px;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s ease, opacity 0.5s ease, transform 0.5s ease;
     opacity: 0;
     transform: translateY(20px);
     /* padding: 20px;
    width: 280px; */
 }

 .feature-card.visible {
     opacity: 1;
     transform: translateY(0);
 }

 .feature-card:nth-child(1).visible {
     transition-delay: 0.1s;
 }

 .feature-card:nth-child(2).visible {
     transition-delay: 0.3s;
 }

 .feature-card:nth-child(3).visible {
     transition-delay: 0.5s;
 }

 .feature-card:nth-child(4).visible {
     transition-delay: 0.7s;
 }

 .feature-card:hover {
     transform: translateY(-5px) !important;
 }

 .feature-card-middle {
     margin-top: 3.5rem;
     margin-bottom: -2.5rem;
 }

 .feature-header {
     display: flex;
     align-items: center;
     gap: 10px;
     margin-bottom: 15px;
 }

 .feature-icon {
     width: 30px;
     height: 30px;
 }

 .feature-title {
     color: #c4a346;
     font-weight: 700;
     font-size: 0.9375rem;
 }

 .feature-description {
     color: #43433fba;
     font-size: 0.75rem;
     font-weight: 500;
 }

 /* Common Section Styles */
 .sections {
     padding: var(--section-padding) 0;
     margin: var(--section-margin) 0;
     text-align: center;
 }

 .section-title {
     font-size: 2.5rem;
     font-weight: 700;
     color: #43433f;
     text-shadow: 0px 4px 4px #d9d9d9;
     margin-bottom: 40px;
 }

 .section-content {
     font-size: 1.75rem;
     max-width: var(--content-max-width);
     margin: 0 auto;
     text-align: left;
     padding: 0 20px;
 }

 /* About Section */
 .section-about {
     padding: var(--section-padding) 0;
     margin: var(--section-margin) 0;
     text-align: center;
     opacity: 0;
     transform: translateY(50px);
     transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
     /* background: #3a86ff; */
 }

 .section-about.visible {
     opacity: 1;
     transform: translateY(0);
 }

 .section-title-about {
     font-size: 2.5rem;
     font-weight: 700;
     color: #43433f;
     text-shadow: 0px 4px 4px #d9d9d9;
     margin-bottom: 20px;
     transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s;
     transform: translateY(30px);
     opacity: 0;
 }

 .section-about.visible .section-title-about {
     transform: translateY(0);
     opacity: 1;
 }

 .section-content-about {
     font-size: 1.75rem;
     max-width: var(--content-max-width);
     margin: 0 auto;
     text-align: left;
     padding: 0 20px;
     transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
     transform: translateY(30px);
     opacity: 0;
 }

 .section-about.visible .section-content-about {
     transform: translateY(0);
     opacity: 1;
 }

 /* Services Section */
 .services-section {
     padding: var(--section-padding) 0;
     margin: var(--section-margin) 0;
 }

 .services-section>.section-title {
     text-align: center;
 }

 .services-container {
     display: flex;
     flex-direction: column;
     gap: 40px;
     max-width: var(--content-max-width);
     margin: 0 auto;
     padding: 0 20px;
 }

 .service-row {
     display: flex;
     justify-content: space-between;
     flex-wrap: wrap;
     gap: 20px;
 }

 .service-card {
     background-color: #d9d9d9;
     border: 1px solid #c4a346;
     border-radius: 10px;
     padding: 30px;
     flex: 1;
     min-width: 300px;
     position: relative;
     overflow: hidden;
 }

 .service-card::before {
     content: '';
     position: absolute;
     top: 5px;
     left: 5px;
     right: 5px;
     bottom: 5px;
     background-color: #d9d9d9;
     border-radius: 5px;
     z-index: 1;
 }

 .service-content {
     position: relative;
     z-index: 2;
     font-size: 1.25rem;
     text-align: center;
 }

 .service-connector {
     width: 100%;
     max-width: 500px;
     margin: 20px auto;
     height: 50px;
 }

 /* Get Started Section */
 .get-started-section {
     background: linear-gradient(180deg, rgba(196, 163, 70, 0.4) 0%, rgb(217, 217, 217) 100%);
     border-radius: 15px;
     padding: 50px;
     margin: var(--section-margin) auto;
     max-width: var(--content-max-width);
     position: relative;
 }

 .get-started-content {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 30px;
     text-align: center;
 }

 .get-started-heading {
     font-size: 2rem;
     font-weight: 300;
 }

 .get-started-subheading {
     font-size: 1.5rem;
     font-weight: 300;
 }

 .get-started-image {
     width: 100%;
     max-width: 400px;
     height: auto;
     margin: 30px 0;
 }

 .get-started-button {
     background-color: #43433f;
     border: 1px solid;
     border-color: #c4a346;
     border-radius: 5px 20px 5px 20px;
     box-shadow: 0px 4px 4px #43433f;
     height: 34px;
     position: relative;
     width: 183px;
     color: #c9b06b;
     font-family: "Montserrat-Light", Helvetica;
     font-size: 15px;
     font-weight: 300;
     letter-spacing: 0;
     line-height: normal;
     white-space: nowrap;
 }

 .our-services-button {
     background-color: #43433f;
     border: 1px solid;
     border-color: #c4a346;
     border-radius: 5px 20px 5px 20px;
     box-shadow: 0px 4px 4px #43433f;
     height: 34px;
     position: relative;
     width: 183px;
     color: #c9b06b;
     font-family: "Montserrat-Light", Helvetica;
     font-size: 15px;
     font-weight: 300;
     letter-spacing: 0;
     line-height: normal;
     white-space: nowrap;
     margin-left: 700px;
 }

 .features-list {
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     width: 100%;
     max-width: 800px;
     margin: auto 20px 0;
     padding: 20px;
 }

 .feature-item {
     display: flex;
     align-items: center;
     gap: 20px;
     margin-bottom: 15px;
     width: 100%;
 }

 .feature-icon {
     width: 40px;
     height: 40px;
     flex-shrink: 0;
 }

 .feature-text {
     font-size: 2rem;
     font-weight: 300;
     letter-spacing: 0;
     line-height: normal;
     margin: 0;
     text-align: left;
     flex-grow: 1;
 }

 .key-features {
     display: flex;
     flex-direction: column;
     gap: 20px;
     margin-top: 40px;
 }

 .key-feature {
     background-color: #c9b06b;
     border-radius: 5px;
     box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
     padding: 12px 20px;
     display: flex;
     align-items: center;
     gap: 20px;
 }

 .feature-number {
     font-weight: 800;
     font-size: 1.375rem;
 }

 .feature-name {
     font-weight: 500;
     font-size: 1.375rem;
     color: #d7d4cb;
 }

 /* FAQ Section */
 .faq-section {
     padding: var(--section-padding) 20px;
     margin: var(--section-margin) auto;
     max-width: 900px;
 }

 .faq-section>.section-title {
     text-align: center;
 }

 .faq-item {
     background-color: #c4a346;
     border: 1px solid #d7d4cb;
     border-radius: 10px 10px 40px 10px;
     box-shadow: 0px 4px 4px rgba(255, 255, 255, 0.5);
     padding: 20px;
     margin-bottom: 20px;
     display: flex;
     align-items: center;
     gap: 20px;
 }

 .faq-question {
     font-weight: 300;
     font-size: 1.25rem;
     flex: 1;
 }

 .faq-question {
     transition: all 0.3s ease;
 }

 .faq-question:hover+.faq-answer,
 .faq-answer:hover {
     display: block !important;
     animation: fadeIn 0.3s ease;
 }

 .faq-question:hover svg {
     transform: rotate(180deg);
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(-10px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 /* Team Section */
 /* Team Section - Enhanced with Animations */
 .team-section {
     padding: var(--section-padding) 2rem;
     margin: var(--section-margin) auto;
     max-width: 1400px;
     position: relative;
     overflow: hidden;
 }

 .section-title-team {
     text-align: center;
     margin-bottom: 1.5rem;
     font-size: 2.5rem;
     font-weight: 700;
     color: #43433f;
     text-shadow: 0px 4px 4px #d9d9d9;
     position: relative;
     display: inline-block;
     left: 50%;
     transform: translateX(-50%);
     opacity: 0;
     transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
 }

 .section-title-team.animate {
     opacity: 1;
     animation: titleSlideIn 0.8s forwards;
 }

 @keyframes titleSlideIn {
     0% {
         transform: translateX(-50%) translateY(-30px);
         opacity: 0;
     }

     100% {
         transform: translateX(-50%) translateY(0);
         opacity: 1;
     }
 }

 .section-subtitle-team {
     text-align: center;
     font-size: 1.1rem;
     color: #666;
     max-width: 700px;
     margin: 0 auto 3rem;
     line-height: 1.8;
     opacity: 0;
     transform: translateY(20px);
     transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s;
 }

 .section-subtitle-team.animate {
     opacity: 1;
     transform: translateY(0);
 }

 .team-members {
     display: flex;
     justify-content: center;
     flex-wrap: wrap;
     gap: 2rem;
     padding: 1rem;
     perspective: 1000px;
 }

 .team-member {
     background: var(--card-bg);
     border-radius: 15px;
     width: 100%;
     max-width: 350px;
     overflow: hidden;
     position: relative;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     transition: var(--transition);
     opacity: 0;
     transform-style: preserve-3d;
 }

 /* Different entrance animations for each team member */
 .team-member:nth-child(1) {
     transform: translateX(-50px) rotateY(20deg);
     transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
 }

 .team-member:nth-child(2) {
     transform: translateY(50px) rotateX(10deg);
     transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
 }

 .team-member:nth-child(3) {
     transform: translateX(50px) rotateY(-20deg);
     transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.8s;
 }

 .team-member.visible {
     opacity: 1;
     transform: translateX(0) translateY(0) rotateX(0) rotateY(0);
 }

 /* Exit animations when scrolling up */
 .team-member.exiting-up {
     transition: all 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53);
 }

 .team-member.exiting-up:nth-child(1) {
     transform: translateX(-50px) rotateY(20deg);
     opacity: 0;
 }

 .team-member.exiting-up:nth-child(2) {
     transform: translateY(50px) rotateX(10deg);
     opacity: 0;
 }

 .team-member.exiting-up:nth-child(3) {
     transform: translateX(50px) rotateY(-20deg);
     opacity: 0;
 }

 .member-image-container {
     position: relative;
     width: 100%;
     height: 350px;
     overflow: hidden;
 }

 .member-image {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: var(--transition);
     transform-origin: center center;
 }

 .member-info {
     padding: 1.5rem;
     text-align: center;
     background: var(--card-bg);
     transform: translateZ(30px);
 }

 .member-name {
     font-size: 1.5rem;
     margin-bottom: 0.5rem;
     color: var(--text-dark);
     transition: all 0.3s ease;
 }

 .member-position {
     color: var(--primary-color);
     font-weight: 600;
     margin-bottom: 1rem;
     display: block;
     transition: all 0.3s ease 0.1s;
 }

 .member-bio {
     color: #666;
     font-size: 0.95rem;
     margin-bottom: 1.5rem;
     transition: all 0.3s ease 0.2s;
 }

 .social-links {
     display: flex;
     justify-content: center;
     gap: 1rem;
     transition: all 0.3s ease 0.3s;
 }

 /* Delayed animations for child elements */
 .team-member.visible .member-name,
 .team-member.visible .member-position,
 .team-member.visible .member-bio,
 .team-member.visible .social-links {
     opacity: 0;
     transform: translateY(10px);
 }

 .team-member.visible .member-name {
     opacity: 1;
     transform: translateY(0);
     transition: all 0.5s ease 0.4s;
 }

 .team-member.visible .member-position {
     opacity: 1;
     transform: translateY(0);
     transition: all 0.5s ease 0.5s;
 }

 .team-member.visible .member-bio {
     opacity: 1;
     transform: translateY(0);
     transition: all 0.5s ease 0.6s;
 }

 .team-member.visible .social-links {
     opacity: 1;
     transform: translateY(0);
     transition: all 0.5s ease 0.7s;
 }

 /* Hover effects */
 .social-link {
     width: 35px;
     height: 35px;
     border-radius: 50%;
     background: #f0f2f5;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--primary-color);
     transition: var(--transition);
     text-decoration: none;
     transform: translateZ(20px);
 }

 .social-link:hover {
     background: var(--primary-color);
     color: white;
     transform: translateY(-3px) translateZ(20px);
 }

 .team-member:hover {
     transform: translateY(-10px) scale(1.02);
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
 }

 .team-member:hover .member-image {
     transform: scale(1.05);
 }

 /* Background decoration elements */
 .team-section::before {
     content: '';
     position: absolute;
     top: -100px;
     right: -100px;
     width: 300px;
     height: 300px;
     background: radial-gradient(circle, rgba(196, 163, 70, 0.1) 0%, rgba(196, 163, 70, 0) 70%);
     z-index: -1;
     opacity: 0;
     transition: opacity 1s ease 0.5s;
 }

 .team-section.animate::before {
     opacity: 1;
 }

 .team-section::after {
     content: '';
     position: absolute;
     bottom: -150px;
     left: -150px;
     width: 400px;
     height: 400px;
     background: radial-gradient(circle, rgba(201, 176, 107, 0.08) 0%, rgba(201, 176, 107, 0) 70%);
     z-index: -1;
     opacity: 0;
     transition: opacity 1s ease 0.7s;
 }

 .team-section.animate::after {
     opacity: 1;
 }

 /* Contact Section */
 .contact-section {
     padding: var(--section-padding) 0;
     margin: var(--section-margin) auto;
     max-width: var(--content-max-width);
 }

 .contact-section>.section-title {
     text-align: center;
 }

 .contact-container {
     background-color: rgba(196, 163, 70, 0.5);
     border: 1px solid #d9d9d9;
     box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
     border-radius: 20px;
     padding: 50px;
 }

 .contact-content {
     display: flex;
     flex-wrap: wrap;
     gap: 40px;
 }

 .contact-info {
     flex: 1;
     min-width: 300px;
 }

 .contact-form {
     flex: 1;
     min-width: 300px;
 }

 .info-section {
     margin-bottom: 40px;
 }

 .info-title {
     font-weight: 600;
     font-size: 1.25rem;
     margin-bottom: 15px;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .info-underline {
     height: 2px;
     background-color: #000000;
     margin-bottom: 20px;
 }

 .info-text {
     font-size: 0.9375rem;
     font-weight: 500;
     margin-bottom: 10px;
 }

 .form-group {
     margin-bottom: 20px;
 }

 .form-input {
     width: 100%;
     padding: 10px;
     background-color: #d9d9d9;
     border: none;
     border-radius: 12px;
     font-size: 1.125rem;
     font-weight: 300;
 }

 .form-textarea {
     height: 150px;
     resize: vertical;
 }

 .form-divider {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 20px;
     margin: 30px 0;
 }

 .divider-line {
     flex: 1;
     height: 1px;
     background-color: #000000;
 }

 .divider-text {
     font-weight: 700;
     font-size: 1.875rem;
 }

 .form-button {
     background-color: #d9d9d9;
     border: none;
     border-radius: 12px;
     padding: 10px 30px;
     font-size: 1.125rem;
     font-weight: 300;
     display: flex;
     align-items: center;
     gap: 10px;
     margin: 0 auto;
     cursor: pointer;
 }

 /* Footer */
 .footer {
     background-color: rgba(196, 163, 70, 0.75);
     border-top: 1px solid #ffffff;
     border-radius: 20px 20px 200px 30px;
     box-shadow: 0px 4px 4px rgba(255, 255, 255, 0.5);
     padding: var(--section-padding) 40px;
     margin-top: var(--section-margin);
 }

 .footer-content {
     display: flex;
     flex-wrap: wrap;
     gap: 40px;
     max-width: 1400px;
     margin: 0 auto;
 }

 .footer-about {
     flex: 2;
     min-width: 300px;
 }

 .footer-logo {
     display: flex;
     align-items: center;
     gap: 20px;
     margin-bottom: 30px;
 }

 .footer-logo-img {
     width: 100px;
     height: 100px;
     object-fit: cover;
     border-radius: 50%;
 }

 .footer-company-name {
     font-weight: 600;
     font-size: 1.9rem;
 }

 .footer-tagline {
     font-weight: 300;
     font-size: 1.5rem;
 }

 .footer-about-text {
     margin-top: 30px;
     font-size: 1.125rem;
 }

 .footer-links {
     flex: 1;
     min-width: 200px;
 }

 .links-title {
     font-weight: 500;
     font-size: 1.875rem;
     margin-bottom: 30px;
     position: relative;
 }

 .links-title::after {
     content: '';
     position: absolute;
     bottom: -10px;
     left: 0;
     width: 100%;
     height: 2px;
     background-color: #000000;
 }

 .footer-link {
     display: flex;
     align-items: center;
     gap: 10px;
     font-weight: 300;
     font-size: 1.5rem;
     margin-bottom: 20px;
     text-decoration: none;
     color: #000000;
 }

 .footer-link::before {
     content: '→';
 }

 .footer-social {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-top: 60px;
     flex-wrap: wrap;
     gap: 20px;
 }

 .social-links {
     display: flex;
     gap: 20px;
     align-items: center;
 }

 .social-text {
     font-weight: 300;
     font-size: 1.75rem;
 }

 .social-icon {
     width: 30px;
     height: 30px;
 }

 .privacy-link {
     font-weight: 300;
     font-size: 1.75rem;
 }

 .footer-copyright {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-top: 60px;
     flex-wrap: wrap;
     gap: 20px;
 }

 .copyright-text {
     display: flex;
     align-items: center;
     gap: 10px;
     font-size: 1.75rem;
 }

 .copyright-icon {
     width: 30px;
     height: 30px;
 }

 .rights-text {
     font-weight: 300;
     font-size: 1.75rem;
 }

 /* Utility Classes */
 .text-left {
     text-align: left;
 }

 .mt-20 {
     margin-top: 20px;
 }

 .mt-40 {
     margin-top: 40px;
 }

 .mb-20 {
     margin-bottom: 20px;
 }

 .mb-50 {
     margin-bottom: 50px;
 }

 .additional {
     margin-top: -100px;
 }

 .mb-100 {
     margin-bottom: 100px;
 }

 /* Responsive adjustments */
 @media (max-width: 1200px) {

     /* Adjust styles for large tablets */
     :root {
         --section-padding: 60px;
         --section-margin: 60px;
     }
 }

 @media (max-width: 768px) {

     /* Adjust styles for tablets */
     :root {
         --section-padding: 50px;
         --section-margin: 50px;
     }

     .hero-heading {
         font-size: 2.5rem;
     }

     .hero-description {
         font-size: 1.75rem;
     }

     .section-title,
     .section-title-about {
         font-size: 2rem;
     }

     .section-content,
     .section-content-about {
         font-size: 1.5rem;
     }

     .our-services-button {
         margin-left: auto;
         margin-right: auto;
     }
 }

 @media (max-width: 576px) {
     .small-screen {
         margin-right: 40px;
     }

     /* Adjust styles for mobile phones */
     :root {
         --section-padding: 40px;
         --section-margin: 40px;
     }

     .hero-heading {
         font-size: 2rem;
     }

     .hero-description {
         font-size: 1.5rem;
     }

     .section-title,
     .section-title-about {
         font-size: 1.75rem;
     }

     .section-content,
     .section-content-about {
         font-size: 1.25rem;
     }

     .hero-design {
         transform: translate(calc(-40% - 20px), calc(-270% - 20px));
     }

     .feature-text {
         font-size: 1.5rem;
     }

     .feature-icon {
         width: 32px;
         height: 32px;
     }

     .feature-item {
         gap: 15px;
     }
 }