 * {
           /* margin: 0;*/
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            text-align: center;
        }

/* Stil pentru hamburger meniu orizontal (header) */
        header .mobile-menu {
            flex-direction: column;
            cursor: pointer;
            background: linear-gradient(135deg, #667eea, #764ba2) !important;
            border: none !important;
            border-radius: 8px !important;
            padding: 12px 16px !important;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4) !important;
            transition: all 0.3s ease !important;
        }

        header .mobile-menu:hover {
            background: linear-gradient(135deg, #764ba2, #667eea) !important;
            transform: translateY(-2px) !important;
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5) !important;
        }

        header .mobile-menu span {
            width: 25px !important;
            height: 3px !important;
            background: white !important;
            margin: 4px 0 !important;
            transition: 0.3s !important;
            border-radius: 2px !important;
        }

        /* Stiluri pentru meniul vertical */
        .page-layout {
            display: flex;
          /*  gap: 30px; */
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Container pentru meniul vertical - Desktop */
        .vertical-menu-container {
            width: 280px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
          
            position: sticky;
          margin-top: 220px;
            flex-shrink: 0;
          
 max-height: calc(100vh - 40px);
            
            
             max-height: calc(100vh - 40px); /* Se adaptează la înălțimea ecranului */
    display: flex;
    flex-direction: column;
    overflow: hidden;
        }

        /* Titlul meniului */
        .vertical-menu-title {
            background: linear-gradient(135deg, #4a90e2, #357abd);
            color: white;
            padding: 20px;
            font-size: 1.6rem;
            font-weight: bold;
            text-align: center;
            border-radius: 10px 10px 0 0;
            font-family: 'Calibri', sans-serif;
              flex-shrink: 0; /* Nu se micșorează */
               
        }

        /* Lista meniului vertical */
        .vertical-menu {
            list-style: none;
            padding: 0;
            margin: 0;
            
             overflow-y: auto; /* Permite scroll vertical */
    overflow-x: hidden;
    flex: 1; /* Ocupă tot spațiul disponibil */
    
    /* Stilizare scrollbar */
    scrollbar-width: thin;
    scrollbar-color: #4a90e2 #f0f0f0;
        }


.vertical-menu::-webkit-scrollbar {
    width: 8px;
}

.vertical-menu::-webkit-scrollbar-track {
    background: #f0f0f0;
   border-radius: 0 0 10px 0;
}

.vertical-menu::-webkit-scrollbar-thumb {
    background: #667eea; /* MOV */
    border-radius: 10px;
    transition: background 0.3s;
}

.vertical-menu::-webkit-scrollbar-thumb:hover {
    background: #764ba2; /* MOV ÎNCHIS */
}


.vertical-menu > li.active .vertical-submenu {
    max-height: 800px; /* Mărit pentru multe linkuri */
    overflow-y: auto;
      scrollbar-width: thin;
    scrollbar-color: #7a91bc #e0f2f1;
}

        /* Itemii meniului */
        .vertical-menu > li {
            border-bottom: 1px solid #f0f0f0;
            position: relative;
        }

        .vertical-menu > li:last-child {
            border-bottom: none;
        }

        /* Linkurile principale */
        .vertical-menu > li > a {
    display: block;
    padding: 15px 20px;
    color: #333;
    font-size: 1.4rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-family: "Baloo 2", sans-serif;
    text-align: left; /* ADĂUGAT - aliniere la stânga */
}

.vertical-menu > li > a:hover {
    background: #f8f9fa;
    color: #4a90e2;
    /* ȘTERS: padding-left: 25px; - textul nu se mai mută */
}

        /* Indicator pentru submeniu */
        .vertical-menu > li > a[data-submenu="true"]::after {
        content: "▶"; 
            position: absolute;
            right: 20px;
            font-size: 0.8em;
          transition: transform 0.3s ease;
        }

        /* Rotește săgeata când submeniul este activ */
        .vertical-menu > li.active > a[data-submenu="true"]::after {
            transform: rotate(90deg);
        }

        /* Submeniul */
        .vertical-submenu {
            list-style: none;
            background: #f8f9fa;
            max-height: 0;
            overflow: hidden;
             text-align: left; /* ADĂUGAT - aliniere la stânga */
            transition: max-height 0.4s ease;
        }

        /* Submeniul activ */
        .vertical-menu > li.active .vertical-submenu {
            max-height: 500px;
        }

        /* Linkurile din submenu */
        .vertical-submenu li a {
            display: block;
            padding: 12px 20px 12px 40px;
            color: #3c3c3c;
            text-decoration: none;
            font-size: 1.43rem;
           transition: all 0.3s ease;
            border-left: 3px solid transparent;
            font-family: "Baloo 2", sans-serif;
        }

        .vertical-submenu li a:hover {
            background: white;
            color: #4a90e2;
         /*   padding-left: 45px;*/
           border-left-color: #4a90e2;
        }

        /* Stiluri pentru icoane */
        .menu-icon {
            margin-right: 10px;
            font-size: 1.1em;
        }

        /* Wrapper pentru conținutul principal */
        .content-wrapper {
            flex: 1;
            min-width: 0;
        }

        /* Hamburger pentru meniul vertical - mobil */
        .vertical-mobile-toggle {
            display: none;
            position: relative;
            margin: 0 auto 20px auto;
            z-index: 100;
            background: #4a90e2;
            border: none;
            border-radius: 8px;
            padding: 12px 16px;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
            transition: all 0.3s ease;
            width: fit-content;
        }

        .vertical-mobile-toggle:hover {
            background: #357abd;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(74, 144, 226, 0.5);
        }

        .vertical-mobile-toggle span {
            display: block;
            width: 25px;
            height: 3px;
            background: white;
            margin: 4px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        /* Buton X pentru închidere meniu vertical */
        .vertical-close-btn {
            display: none;
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1001;
            background: #af257e;
            border: none;
            border-radius: 50%;
            width: 45px;
            height: 45px;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
            transition: all 0.3s ease;
            align-items: center;
            justify-content: center;
        }

        .vertical-close-btn:hover {
            background: #e84118;
            transform: rotate(90deg) scale(1.1);
            box-shadow: 0 6px 20px rgba(255, 71, 87, 0.6);
        }

        .vertical-close-btn span {
            color: white;
            font-size: 28px;
            font-weight: bold;
            line-height: 1;
        }

        .vertical-close-btn.show {
            display: flex;
        }

        /* Animație hamburger vertical când e activ - transform în X */
        .vertical-mobile-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .vertical-mobile-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .vertical-mobile-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

.menuascuns {
	display: none;
	font-size: 18px;
	    
   
   
    height: 100%;
    width: 100%;
   
}

.main_text {
	display: none;
	 width: 100%;
    
height: 100%;
}

        /* Responsive pentru mobile și tablete */
        @media (max-width: 1024px) {
            .page-layout {
                flex-direction: column;
                padding: 0 10px;
            }
            
            .twomain {
        
	width: 100%;
}

 .twomain ul li {
         
	width: 100%;
}

.twomain p {
         
	width: 100%;
}

 .menuascuns {display:inline;}
    .main_text {display:inline;}
    .first-row{display:none;} 
    
            /* Afișează butonul hamburger pe mobil */
            .vertical-mobile-toggle {
                display: none;
                flex-direction: column;
                align-items: center;
                justify-content: center;
            }

            /* Meniul vertical pe mobil */
            .vertical-menu-container {
                position: fixed;
                display: none;
                top: 0;
                right: -100%;
                width: 300px;
                max-width: 85%;
                height: 100vh;
                overflow-y: auto;
                z-index: 1000;
                transition: right 0.4s ease;
                border-radius: 0;
                box-shadow: -5px 0 25px rgba(0,0,0,0.2);
                
                
                   display: flex;
        flex-direction: column;
        overflow: hidden;
            }

            /* Meniul vizibil pe mobil */
            .vertical-menu-container.mobile-active {
                right: 0;
            }

            /* Overlay pentru fundal */
            .menu-overlay {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: rgba(0, 0, 0, 0.5);
                z-index: 999;
                opacity: 0;
                transition: opacity 0.4s ease;
            }

            .menu-overlay.active {
                display: block;
                opacity: 1;
            }

            /* Titlu meniu mobil */
            .vertical-menu-title {
                border-radius: 0;
                position: sticky;
                top: 0;
                z-index: 10;
                
                 flex-shrink: 0;
            }


 /* IMPORTANT - Lista meniului să aibă scroll */
    .vertical-menu {
        flex: 1;
        overflow-y: auto;
        overflow-x: hidden;
    }

            /* Submeniu optimizat pentru mobile */
            .vertical-submenu {
                background: #e3f2fd;
            }

            .vertical-submenu li a {
                padding: 16px 20px 16px 40px;
                font-size: 1rem;
                border-left: 4px solid transparent;
                min-height: 50px;
                display: flex;
                align-items: center;
            }

            .vertical-submenu li a:hover {
                padding-left: 45px;
                background: #bbdefb;
            }

            /* Mărește zona de tap pentru mobile */
            .vertical-menu > li > a {
                padding: 18px 20px;
                font-size: 1.05rem;
            }

            .vertical-menu > li > a[data-submenu="true"]::after {
                font-size: 1em;
                padding: 5px;
            }

            /* Spațiere mai mare pentru mobile */
            .vertical-menu > li {
                border-bottom: 2px solid #f0f0f0;
            }

            /* Evidențiază itemul activ */
            .vertical-menu > li.active > a {
                background: #e3f2fd;
                color: #4a90e2;
            }

            /* Animație pentru submeniu pe mobile */
            .vertical-menu > li.active .vertical-submenu {
                animation: slideDown 0.3s ease;
            }

            @keyframes slideDown {
                from {
                    opacity: 0;
                    transform: translateY(-10px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            .content-wrapper {
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            .vertical-mobile-toggle {
                margin: 0 auto 15px auto;
                padding: 10px 14px;
            }

            .vertical-mobile-toggle span {
                width: 22px;
            }

            .vertical-menu-container {
                width: 280px;
            }

            .vertical-menu-title {
                font-size: 1.2rem;
                padding: 18px;
            }

            /* ASCUNDE COMPLET submeniurile pe mobil */
            .nav-menu .submenu {
                display: none !important;
                opacity: 0 !important;
                visibility: hidden !important;
                max-height: 0 !important;
            }

            /* Afișează doar când e activ */
            .nav-menu li.submenu-active > .submenu {
                display: block !important;
                opacity: 1 !important;
                visibility: visible !important;
                max-height: 1000px !important;
            }

            /* ASCUNDE orice pseudo-element ::after din ultimul item al submeniului */
            .submenu li:last-child::after,
            .submenu li:last-child a::after {
                display: none !important;
                content: none !important;
            }
        }



        /* Header styles - made wider with white background */
        header {
            background: white;
            color: #333;
            padding: 3rem 0;
            margin-bottom: 2rem;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        nav {
            display: flex;
            justify-content: center;
            align-items: center;
            max-width: auto; /* Increased from 1400px; Increased from 1200px */
            margin: 0 auto;
            padding: 0 2rem;
            gap: 3rem;
        }

        .logo {
            position: absolute;
            left: 17.5rem;
        }

        .logo {
            position: absolute;
            left: 17.5rem;
            font-size: 2rem;
            font-weight: bold;
            text-decoration: none;
            color: #4a90e2;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 1rem;
            margin:0;
        }

        .nav-menu li {
            position: relative;
        }

        .nav-menu li a {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            text-align: center;
            line-height: 1.2;
            display: block;
            padding: 0.5rem 0;
            font-size: 23px;
             padding-left: 5px;
            padding-right: 5px;
            font-family: "Baloo 2", sans-serif;
        }

        .nav-menu li a:hover {
            color: #fff;
            background-color: #4a90e2;
           
            border-radius: 8px;
        }

        /* Multi-word menu items on two lines */
        .nav-menu li a[data-multiword="true"] {
            white-space: pre-line;
        }

        /* Submenu indicator arrow */
        .nav-menu li a[data-submenu="true"]:after {
            content: " +";
            font-size: 0.8em;
            margin-left: 0.2rem;
        }

        /* Submenu styles */
        .submenu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 200px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            border-radius: 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            padding: 0.5rem 0;
            list-style: none;
            font-family: "Baloo 2", sans-serif;
        }

        .nav-menu li:hover .submenu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            
        }

        .submenu li {
            width: 100%;
        }

        .submenu li a {
            padding: 0.7rem 1.5rem;
            white-space: nowrap;
            color: #333;
            border-radius: 0;
            text-align: left;
        }

        .submenu li a:hover {
            background: #f8f9fa;
            color: #4a90e2;
            color: #fff;
            background-color: #4a90e2;
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .mobile-menu span {
            width: 25px;
            height: 3px;
            background: #333;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Hero Section */
       .hero {
  background-image: url("g141.png");
    background-size: contain;         /* Afișează imaginea completă */
    background-position: center center;
    background-repeat: no-repeat;
    color: #333;
    text-align: center;
    position: relative;
    overflow: hidden;
   margin-top: 2rem;
   padding: 225px 0 225px;
}

        /* Curved bottom border for hero */
       /* .hero::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: auto;
            /*background: #f8f9fa;*/
            background-image: url("g141.png");
            /*clip-path: path('M0,0 C100,60 200,0 300,40 C400,80 500,20 600,0 C800,0 1000,0 1200,0 C1400,0 1600,0 1800,0 L1800,60 L0,60 Z');*/
        }*/

        /* Math symbols */
        .math-symbol {
            position: absolute;
            font-size: 3rem;
            opacity: 1;
            pointer-events: none;
            animation: floatSymbol 15s ease-in-out infinite;
        }

        .math-symbol:nth-child(1) {
            top: 20%;
            left: 10%;
            color: #4a90e2;
            animation-delay: 0s;
            font-size: 4rem;
        }

        .math-symbol:nth-child(2) {
            top: 60%;
            right: 15%;
            color: rgba(74,144,226,0.3);
            animation-delay: -2s;
            font-size: 3.5rem;
        }

        .math-symbol:nth-child(3) {
            top: 30%;
            right: 25%;
            color: #667eea;
            animation-delay: -4s;
            font-size: 2.5rem;
        }

        .math-symbol:nth-child(4) {
            bottom: 25%;
            left: 20%;
            color: rgba(102,126,234,0.25);
            animation-delay: -6s;
            font-size: 3rem;
        }

        .math-symbol:nth-child(5) {
            top: 15%;
            right: 8%;
            color: rgba(74,144,226,0.2);
            animation-delay: -8s;
            font-size: 2.8rem;
        }

        .math-symbol:nth-child(6) {
            bottom: 20%;
            right: 35%;
            color: #4a90e2;
            animation-delay: -10s;
            font-size: 2.2rem;
        }

        .math-symbol:nth-child(7) {
            top: 45%;
            left: 8%;
            color: rgba(102,126,234,0.3);
            animation-delay: -12s;
            font-size: 3.8rem;
        }

        .math-symbol:nth-child(8) {
            bottom: 40%;
            right: 12%;
            color: rgba(74,144,226,0.15);
            animation-delay: -14s;
            font-size: 2.3rem;
        }

        @keyframes floatSymbol {
            0%, 100% {
                transform: translateY(0px) translateX(0px) rotate(0deg);
                opacity: 0.5;
            }
            25% {
                transform: translateY(-20px) translateX(10px) rotate(5deg);
                opacity: 0.45;
            }
            50% {
                transform: translateY(-10px) translateX(-5px) rotate(-3deg);
                opacity: 0.41;
            }
            75% {
                transform: translateY(-15px) translateX(8px) rotate(2deg);
                opacity: 0.38;
            }
        }

        .hero-content {
            max-width: 1400px; /* Increased to match header width */
            margin: -20px auto 0 auto;
            padding: 0.1rem 2rem 3rem 2rem;
           background-color: #fff;
           
           border-radius: 15px;
         /*   box-shadow: 0 40px 60px rgba(0,0,0,0.9);*/
        }

        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            padding-top: 1rem;
            color: #21242c; /* Applied specific color */
            font-family: "Baloo 2", sans-serif;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            font-family: "Baloo 2", sans-serif;
        }

        .cta-button {
            display: inline-block;
            background: #4a90e2; /* Changed from pink to blue */
            color: white;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
            font-family: "Baloo 2", sans-serif;
            text-align: center;
        }

        .cta-button:hover {
            background: #357abd; /* Darker blue on hover */
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
        }

        /* Features Section */
        .features {
           /* padding: 80px 0;*/
            background: #fff;
            position: relative;
            padding-bottom: 50px;
            margin-top: 12rem;/* 2rem*/
            padding: 0 0 225px 0;
        }

        /* Curved top border for features */
        .features::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: auto;
            /*background: #f8f9fa;*/
           /* background-image: url("g141.png");*/
           /* clip-path: ellipse(100% 100% at 50% 100%);*/
         /*   transform: translateY(-59px);*/
        }

        .container {
            max-width: 1400px; /* Increased to match header width */
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #21242c; /* Applied specific color */
            font-family: "Baloo 2", sans-serif;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            padding-bottom: 20px;
            border-radius: 15px;
        }

        .feature-card {
            background: white;
            /*padding: 2rem;*/
            /*border-radius: 15px;*/
           /* box-shadow: 0 10px 30px rgba(0,0,0,0.1);*/
            text-align: center;
           /* transition: transform 0.3s ease;*/
        }

      /*  .feature-card:hover {
            transform: translateY(-10px);
        }
*/
        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1rem;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .feature-card p {
            color: #666;
            line-height: 1.1;
            font-size: 120%;
        }

        /* About Section */
        .about {
            padding: 80px 0;
            background: white;
            position: relative;
              margin-top: 7rem;
        }

        /* Curved borders for about section */
        .about::before {
            content: '';
            position: absolute;
            top: 50px;
            left: 0;
            width: 100%;
          /*  height: 60px;*/
            background: white;
          /*  clip-path: ellipse(100% 100% at 50% 100%);*/
           /* transform: translateY(-59px);*/
           
            
        }

        .about::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background: white;
         /*   clip-path: ellipse(100% 100% at 50% 0%);*/
            z-index: 10;
        }

        .about-content {
            display: grid;
            grid-template-columns: 0.8fr 0.5fr;
          /*  gap: 4rem;*/
            align-items: center;
        }

        .about-text h2 {
            font-size: 2rem;
            margin-bottom: 2rem;
            color: #21242c; /* Applied specific color */
            font-family: "Baloo 2", sans-serif;
        }

        .about-text p {
            font-size: 1.5rem;
            color: #000;
            margin-bottom: 1.5rem;
          text-align: justify;
            font-family: "Baloo 2", sans-serif;
        }

        .about-image {
            text-align: center;
        }

        .about-image img {
            max-width: 100%;
            border-radius: 15px;
           /* box-shadow: rgba(254, 246, 220, 0.8)  0px 20px 30px;*/
        }
















        /* Stats Section */
        .stats {
            padding: 80px 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); /* Same background as hero */
            color: white;
            position: relative;
        }

        /* Curved top border for stats */
        .stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            /*clip-path: ellipse(100% 100% at 50% 100%);*/
          /*  transform: translateY(-59px);*/
        }

        .stats h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #21242c; /* Applied specific color */
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
        }

        .stat-card {
            text-align: center;
            padding: 2rem;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
            color: #ffd700;
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }

    /* Footer */
        .footer-bottom a {
            text-decoration: none;
            color: #3F3F3F;
            font-family: Helvetica, 'Open Sans', light, Georgia, sans-serif;
            font-size: 100%;
        }

        .linie-gri2 {
            background-image: url("ie.png");
            height: 15px;
            width: 100%;
        }

.desen {

text-align: center;

}

.font-fb {
font-family: 'Poppins', sans-serif;
font-size: 18px;
font-weight: 700;
color: #4a90e2;
text-decoration: none;
padding-right: 20px;
}

.spatiu-stanga {

padding-left: 20px;
}

        footer {
            /*background: #333;*/
            background-image: url(./brillant.png);
            background-repeat: repeat;
           /* color: white;*/
            /*padding: 50px 0 30px;*/
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            margin-bottom: 1rem;
            color: #4a90e2; /* Changed to match button color */
            font-family: "Baloo 2", sans-serif;
            font-size:130%;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section ul li a {
            color: #000;
            text-decoration: none;
            transition: color 0.3s ease;
            font-family: "Baloo 2", sans-serif;
            font-size: 120%;
        }

        .footer-section ul li a:hover {
            color: #4a90e2; /* Changed to match button color */
        }

        .footer-bottom {
            text-align: center;
            padding-top: 0rem;
            border-top: 0px solid #555;
            color: #000;
        }

.orange {
            background-color: #FDFFEB;
        }


.blue {
            background-color: #FFEBFD;
        }


.green {
            background-color: #FFECEB;
        }






.purple {
            background-color: #EBFFEF;
        }


.yellow {
            background-color: #F7F4E7;
        }

.light {
            background-color: #F3FFEB;
        }
/*.bordura {
            border-bottom: 1px solid #000;
           
        }
        */
.linkto3 {
            color: #000;
            text-decoration: none;
           font-family: "Baloo 2", sans-serif;
           font-size: 120%;
        }
        
        
       .linkto3:hover {
            color: #826F07;
            text-decoration: none;
           
        } 
        
        
      .linkto2 {
            color: #000;
            text-decoration: none;
           font-family: "Baloo 2", sans-serif;
           font-size: 120%;
        }
        
        
       .linkto2:hover {
            color: #000;
            text-decoration: none;
           
        }   
        
        
        
        
        
        
        
        
        
      /* Responsive Design */
@media (max-width: 768px) {
header {
position: relative;
padding: 2rem 0; /* Reduced padding for mobile */
}

nav {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 1rem 0;
position: relative;
gap: 1rem; /* Added gap between logo and hamburger */
max-width: none;
}

.logo {
position: static; /* Changed from absolute to static */
margin-bottom: 0; /* Remove default margin */
text-align: center;
left: auto; /* Reset left positioning */
}

.mobile-menu {
display: flex;
position: static; /* Changed from absolute to static */
top: auto; /* Reset top positioning */
right: auto; /* Reset right positioning */
z-index: auto;
}

.nav-menu {
display: none;
width: 100%;
max-width: 300px;
background: white;
flex-direction: column;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
padding: 1rem 0;
margin: 0 auto;
border-radius: 8px;
}

.nav-menu.active {
display: flex;
}

.nav-menu li {
width: 100%;
text-align: center;
margin: 0;
}

.nav-menu li a {
padding: 1rem;
border-bottom: 1px solid #f0f0f0;
display: block;
width: 100%;
}

.nav-menu li:last-child a {
border-bottom: none;
}

/* Simplify submenus on mobile */
.submenu {
position: static;
opacity: 1;
visibility: visible;
transform: none;
box-shadow: none;
background: #f8f9fa;
margin: 0;
border-radius: 0;
padding: 0;
}

.nav-menu li:hover .submenu {
opacity: 1;
visibility: visible;
transform: none;
}

.submenu li a {
padding: 0.8rem 2rem;
/*font-size: 1rem;*/
border-bottom: 1px solid #e0e0e0;
background: #f8f9fa;
}

.nav-menu li a[data-submenu="true"]:after {
content: " ▼";
font-size: 0.7em;
}

.features {
          
            margin-top: 2rem;/* 2rem*/
           
        }

.hero-content {
            max-width: 1400px; /* Increased to match header width */
            margin: -20px auto 0 auto;
            padding: 0.1rem 2rem 3rem 2rem;
          /* background-color: #fff; */
           background: linear-gradient(135deg, #fdffb6, #caffbf,#9bf6ff ); 
           border-radius: 15px;
           box-shadow: none;
        }

.hero {
padding: 50px 0 80px;
background-image: url("g141.png");
}

.hero h1 {
font-size: 2.5rem;
}

.hero p {
font-size: 1.1rem;
}



.cta-button {
           
            margin-bottom: 20px;
        }















.about-content {
grid-template-columns: 1fr;
text-align: center;
}

.stats-grid {
grid-template-columns: 1fr;
gap: 2rem;
}

.stat-card {
padding: 1.5rem;
}

.stat-number {
font-size: 2.5rem;
}

.stat-label {
font-size: 1rem;
}

.features-grid {
grid-template-columns: 1fr;
}

.container {
padding: 0 1rem;
}

.hero-content {
padding: 0 1rem;
}

.section-title {
font-size: 2rem;
}
}