a:hover {
  color: #000 !important;
}

:root {
            --primary-green: #059669;
            --secondary-green: #10b981;
            --accent-orange: #f59e0b;
            --accent-orange1: #f50000ff;
            --dark-gray: #1f2937;
            --light-gray: #f9fafb;
        }

  
        .hero-section1{
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
            color: white;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .hero-section1::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('/placeholder.svg?height=600&width=1200') center/cover;
            opacity: 0.1;
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .floating-element {
            position: absolute;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }
        .hero-section1 {
        margin-top: 100px; 
        }

        .floating-element:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            width: 60px;
            height: 60px;
            top: 60%;
            right: 15%;
            animation-delay: 2s;
        }

        .floating-element:nth-child(3) {
            width: 100px;
            height: 100px;
            bottom: 20%;
            left: 20%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

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

        .section-title {
            position: relative;
            margin-bottom: 40px;
        }

        .section-title::before {
            content: '';
            position: absolute;
            top: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--accent-orange);
        }

        .financial-year-card {
            background: white;
            border-radius: 1px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            margin-bottom: 30px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .financial-year-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .year-header {
            background: linear-gradient(135deg, var(--primary-green), #059669);
            color: white;
            padding: 20px;
            cursor: pointer;
            position: relative;
        }

        .year-header h4 {
            margin: 0;
            font-weight: 600;
        }

        .year-header .toggle-icon {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            transition: transform 0.3s ease;
        }

        .year-header.collapsed .toggle-icon {
            transform: translateY(-50%) rotate(180deg);
        }

        .documents-list {
            padding: 25px;
        }

        .document-item {
            display: flex;
            align-items: center;
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 10px;
            transition: background-color 0.3s ease;
            text-decoration: none;
            color: inherit;
        }

        .document-item:hover {
            background-color: var(--light-gray);
            color: inherit;
            text-decoration: none;
        }

        .document-icon {
            width: 40px;
            height: 40px;
            background: var(--accent-orange1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-right: 15px;
        }

        .stats-section {
            background: var(--light-gray);
            padding: 80px 0;
        }

        .stat-card {
            text-align: center;
            padding: 30px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            margin-bottom: 30px;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-green);
            margin-bottom: 10px;
        }


        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }

            .financial-year-card {
                margin-bottom: 20px;
            }

            .year-header {
                padding: 15px;
            }

            .documents-list {
                padding: 15px;
            }
             .hero-section1::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('/placeholder.svg?height=600&width=1200') center/cover;
            opacity: 0.1;
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .floating-element {
            position: absolute;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }
        .hero-section1 {
        margin-top: 100px; /* Ajuste conforme a altura do seu menu */
        }

        .floating-element:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            width: 60px;
            height: 60px;
            top: 60%;
            right: 15%;
            animation-delay: 2s;
        }

        .floating-element:nth-child(3) {
            width: 100px;
            height: 100px;
            bottom: 20%;
            left: 20%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }





        }