  :root {
            --fatec-red-primary: rgb(178,0,0);
            --fatec-red-bright: #ff161f;
            --fatec-red-dark: #842519;
            --fatec-black: #000000;
            --fatec-white: #ffffff;
            --fatec-gray-dark: rgb(102,102,102);
            --fatec-gray: #808080;
            --fatec-gray-light: #bfbfbf;
            
            --apple-nav-bg: rgba(0, 0, 0, 0.92);
        }

        body {
            font-family: 'Verdana', Geneva, sans-serif;
            color: var(--fatec-black);
            background-color: var(--fatec-white);
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
        }


        .navbar-brand {
            font-size: 16px; 
            font-weight: 100;
            color: var(--fatec-black) !important;
            padding: 10px 0;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: color 0.2s;
        }

        .navbar-brand:hover {
            color: var(--fatec-red-bright) !important;
        }


        .nav-link {
            font-size: 14px !important; 
            color: var(--fatec-gray-dark) !important;
            padding: 10px 15px !important;
            transition: color 0.2s ease;
            font-weight: 400;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--fatec-black) !important;
        }

        /* Carousel Styling */
        .carousel-item {
            height: 70vh;
            background-color: var(--fatec-black);
            overflow: hidden;
        }

        /* .carousel-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.5;
        } */
/* 
        .carousel-caption {
            bottom: 25%;
            text-align: center;
            max-width: 900px;
            left: 50%;
            transform: translateX(-50%);
            padding: 20px;
            background: rgba(0,0,0,0.4);
            backdrop-filter: blur(4px);
            border-radius: 12px;
        } */
/* 
        .carousel-caption h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--fatec-white);
            margin-bottom: 0.5rem;
        } */

        /* .carousel-caption p {
            font-size: 1.2rem;
            color: var(--fatec-gray-light);
        } */

        /* Notices Area (Reverted to Version 1 Model) */
        .section-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--fatec-black);
            margin-bottom: 2.5rem;
            padding-bottom: 12px;
            border-bottom: 3px solid var(--fatec-red-primary);
            display: inline-block;
        }

        .main-notice-card {
            border: none;
            border-radius: 12px;
            background: #fff;
            margin-bottom: 2rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

        .main-notice-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.1);
        }

        .notice-date {
            font-size: 12px;
            color: var(--fatec-red-primary);
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 8px;
            display: block;
        }

        .btn-fatec {
            background-color: var(--fatec-red-primary);
            color: var(--fatec-white);
            border-radius: 50px;
            padding: 10px 25px;
            font-size: 14px;
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            transition: background 0.2s;
            border: none;
        }

        .btn-fatec:hover {
            background-color: var(--fatec-red-bright);
            color: var(--fatec-white);
        }

        .quick-notice {
            padding: 1.2rem;
            border-left: 5px solid var(--fatec-red-primary);
            margin-bottom: 1.2rem;
            background: #fff;
            border-radius: 0 12px 12px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.03);
            transition: background 0.2s;
        }

        .quick-notice:hover {
            background: #fdfdfd;
            border-left-color: var(--fatec-red-bright);
        }

        .quick-notice h6 {
            font-size: 14px;
            font-weight: 700;
            color: var(--fatec-red-dark);
            margin-bottom: 5px;
        }

        .quick-notice p {
            font-size: 13px;
            color: var(--fatec-gray-dark);
            margin-bottom: 0;
        }

        /* Footer Refined */
        footer {
            background-color: #f5f5f7;
            color: var(--fatec-gray-dark);
            padding: 60px 0 30px;
            font-size: 14px;
            border-top: 1px solid #d2d2d7;
        }

        footer h5 {
            color: var(--fatec-black);
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer-link {
            color: var(--fatec-gray-dark);
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
        }

        .footer-link:hover {
            text-decoration: underline;
            color: var(--fatec-red-primary);
        }

        .social-icons a {
            color: var(--fatec-gray-dark);
            margin-right: 20px;
            font-size: 20px;
            transition: color 0.2s;
        }

        .social-icons a:hover {
            color: var(--fatec-red-primary);
        }

        .copyright {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #d2d2d7;
            color: var(--fatec-gray);
            font-size: 12px;
        }

        /* Responsive Adjustments */
        @media (max-width: 991px) {
            .navbar {
                height: auto;
                padding: 10px 0;
            }
            .nav-link {
                padding: 10px 0 !important;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            /* .carousel-caption h2 {
                font-size: 1.8rem;
            } */
        }