      * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    :root {
      --dark-gray: #333333;
      --light-gray: #f5f5f5;
      --medium-gray: #777777;
      --accent-gray: #555555;
      --white: #ffffff;
      --primary: #4a4a4a;
      --secondary: #686868;
      --accent: #8f8f8f;
      --hover-color: #3d3d3d;
      --gold: #d4af37;
      --gradient-primary: linear-gradient(135deg, #4a4a4a, #686868);
      --gradient-accent: linear-gradient(135deg, #8f8f8f, #4a4a4a);
    }

    body {
      background-color: var(--light-gray);
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.8rem 5%;
      background-color: var(--white);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      position: sticky;
      top: 0;
      z-index: 1000;
      border-bottom: 3px solid #e6e6e6;
    }

    .logo {
      display: flex;
      align-items: center;
    }

    .logo img {
      height: 80px;
      margin-right: 10px;
      transition: transform 0.3s ease;
    }
    


    .nav-links {
      display: flex;
      list-style: none;
    }

    .nav-links li {
      position: relative;
      margin-left: 1.5rem;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--dark-gray);
      font-weight: 600;
      font-size: 1.1rem;
      padding: 0.7rem 1rem;
      transition: all 0.3s ease;
      border-radius: 4px;
      position: relative;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .nav-links a:before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      transition: width 0.3s ease, left 0.3s ease;
    }

    .nav-links a:hover:before, 
    .nav-links a.active:before {
      width: 85%;
      left: 8%;
    }

    .nav-links a:hover, 
    .nav-links a.active {
      color: var(--hover-color);
      background-color: rgba(0,0,0,0.03);
    }

    .dropdown-content {
      display: none;
      position: absolute;
      background-color: var(--white);
      min-width: 220px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      z-index: 1;
      border-radius: 6px;
      top: 100%;
      left: -20px;
      margin-top: 0.8rem;
    }
    
    .dropdown:hover .dropdown-content {
      display: block;
    }

    .dropdown-content a {
      color: var(--dark-gray);
      padding: 14px 18px;
      text-decoration: none;
      display: block;
      text-align: left;
      border-bottom: 1px solid #eaeaea;
      font-size: 0.95rem;
      transition: all 0.3s ease;
      position: relative;
      padding-left: 24px;
    }
    
    .dropdown-content a:before {
      content: '•';
      position: absolute;
      left: 12px;
      opacity: 0;
      transition: opacity 0.2s ease, transform 0.2s ease;
      transform: translateX(-5px);
    }

    .dropdown-content a:hover:before {
      opacity: 1;
      transform: translateX(0);
    }

    .dropdown-content a:last-child {
      border-bottom: none;
    }

    .dropdown-content a:hover {
      background-color: #f9f9f9;
      padding-left: 30px;
    }

    .dropdown i {
      margin-left: 5px;
      font-size: 0.8rem;
      transition: transform 0.3s ease;
    }
    
    .dropdown:hover i {
      transform: rotate(180deg);
    }

    .hamburger {
      display: none;
      cursor: pointer;
    }

    .bar {
      display: block;
      width: 25px;
      height: 3px;
      margin: 5px auto;
      transition: all 0.3s ease-in-out;
      background-color: var(--dark-gray);
    }

    @media (max-width: 768px) {
      .hamburger {
        display: block;
      }

      .hamburger.active .bar:nth-child(2) {
        opacity: 0;
      }

      .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
      }

      .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
      }

      .nav-links {
        position: fixed;
        left: -100%;
        top: 80px;
        gap: 0;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
      }

      .nav-links.active {
        left: 0;
      }

      .nav-links li {
        margin: 16px 0;
      }

      .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        min-width: 100%;
        background-color: var(--light-gray);
        border-radius: 0;
        margin-top: 10px;
      }

      .dropdown-content a {
        padding: 10px;
        text-align: center;
      }
      
      .dropdown:hover .dropdown-content {
        display: none;
      }
      
      .dropdown.active .dropdown-content {
        display: block;
      }
    }

    .active {
      font-weight: 700;
      position: relative;
    }
    
    .navbar:after {
      content: '';
      position: absolute;
      bottom: -3px;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, transparent, rgba(150,150,150,0.2), transparent);
      background-size: 200% 100%;
      animation: gradient-shift 6s infinite linear;
    }
    
    @keyframes gradient-shift {
      0% { background-position: 100% 0; }
      100% { background-position: -100% 0; }
    }
            .header {
            background: var(--gradient-primary);
            color: var(--white);
            padding: 2rem 0;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .header h1 {
            font-size: 3rem;
            margin-bottom: 0.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            position: relative;
            z-index: 1;
        }

        .header .subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .news-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            border: 2px solid transparent;
            position: relative;
        }

        .news-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-accent);
            opacity: 0;
            transition: opacity 0.3s ease;
            border-radius: 20px;
        }

        .news-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.2);
            border-color: var(--gold);
        }

        .news-card:hover::before {
            opacity: 0.05;
        }

        .news-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .news-card:hover .news-image {
            transform: scale(1.05);
        }

        .news-content {
            padding: 2rem;
            position: relative;
            z-index: 1;
        }

        .news-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1rem;
            transition: color 0.3s ease;
        }

        .news-card:hover .news-title {
            color: var(--hover-color);
        }

        .news-meta {
            display: flex;
            align-items: center;
            gap: 1rem;
            color: var(--medium-gray);
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .news-meta i {
            color: var(--gold);
        }

        .read-more {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--gold);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .read-more:hover {
            color: var(--hover-color);
            transform: translateX(5px);
        }

        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            backdrop-filter: blur(10px);
            animation: fadeIn 0.4s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modal-content {
            background: var(--white);
            margin: 2% auto;
            padding: 0;
            border-radius: 20px;
            width: 90%;
            max-width: 900px;
            max-height: 90vh;
            overflow-y: auto;
            animation: slideIn 0.4s ease;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }

        @keyframes slideIn {
            from { transform: translateY(-50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .modal-header {
            position: relative;
            padding: 0;
        }

        .modal-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 20px 20px 0 0;
        }

        .close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(0,0,0,0.7);
            color: var(--white);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .close:hover {
            background: var(--gold);
            transform: rotate(90deg);
        }

        .modal-body {
            padding: 2rem;
        }

        .modal-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .modal-paragraph {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--secondary);
            margin-bottom: 2rem;
            text-align: justify;
        }

        .carousel {
            position: relative;
            margin-top: 2rem;
        }

        .carousel-container {
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            background: var(--white);
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .carousel-slide {
            min-width: 100%;
            height: 450px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--light-gray);
        }

        .carousel-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
            max-width: 100%;
            max-height: 100%;
            border-radius: 10px;
        }

        .carousel-image.cover-mode {
            object-fit: cover;
        }

        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.7);
            color: var(--white);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
        }

        .carousel-nav:hover {
            background: var(--gold);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-nav.prev {
            left: 15px;
        }

        .carousel-nav.next {
            right: 15px;
        }

        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--medium-gray);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-dot.active {
            background: var(--gold);
            transform: scale(1.2);
        }

        @media (max-width: 768px) {
            .news-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .modal-content {
                width: 95%;
                margin: 5% auto;
            }
            
            .header h1 {
                font-size: 2rem;
            }
            
            .modal-title {
                font-size: 1.5rem;
            }

            .carousel-slide {
                height: 300px;
            }
        }

        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid var(--light-gray);
            border-radius: 50%;
            border-top-color: var(--gold);
            animation: spin 1s ease-in-out infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }