.col-md-4 p {
    color:white;
}
ul.no-bullets {
    list-style-type: none;
    margin: 0;
    padding: 0;
    color:rgb(250, 194, 47);
}
footer{
    text-align: center;
    font-weight: lighter;
    background-color: rgb(60, 42, 107); /* PURPLE */
    color: rgb(251,192,47); /*YELLOW */
    width: 100%;
}
:root {
            --primary-purple: #3C2A6B;
            --accent-yellow: #FAC22F;
            --background-white: #F4F4F4;
        }

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

        .corporate-section {
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            margin-bottom: 30px;
            padding: 30px;
            transition: all 0.3s ease;
            border-left: 5px solid var(--primary-purple);
        }

        .corporate-section:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }

        .corporate-section h2 {
            color: var(--primary-purple);
            border-bottom: 3px solid var(--accent-yellow);
            padding-bottom: 10px;
            margin-bottom: 20px;
            font-weight: bold;
        }

        .corporate-section ul {
            list-style-type: none;
            padding-left: 0;
        }

        .corporate-section ul li::before {
            content: '✓';
            color: var(--accent-yellow);
            margin-right: 10px;
            font-weight: bold;
        }

        .section-icon {
            color: var(--accent-yellow);
            font-size: 3rem;
            margin-bottom: 15px;
        }

        #main-container {
            padding-top: 50px;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-section {
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }

        .animate-section:nth-child(1) { animation-delay: 0.2s; }
        .animate-section:nth-child(2) { animation-delay: 0.4s; }
        .animate-section:nth-child(3) { animation-delay: 0.6s; }
        .animate-section:nth-child(4) { animation-delay: 0.8s; }
        .animate-section:nth-child(5) { animation-delay: 1.0s; }
        .animate-section:nth-child(6) { animation-delay: 1.2s; }
        .animate-section:nth-child(7) { animation-delay: 1.4s; }

        .reveal {
            position: relative;
            transform: translateY(50px);
            opacity: 0;
            transition: all 1s ease;
        }

        .reveal.active {
            transform: translateY(0);
            opacity: 1;
        }