:root {
            --maroon: #70181f;
            --green: #427d3a;
            --black: #000000;
            --white: #ffffff;
            --light-bg: #f5f5f5;
            --text-gray: #555555;
            --border-light: #e0e0e0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-gray);
            background: #fafafa;
            overflow-x: hidden;
        }

        /* Hero Section */
        .internship-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.68)), url(../assets/image/bg.webp?w=1200&h=600&fit=crop) center / cover;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 140px 0 120px;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            color: white;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: 10px 30px;
            border-radius: 50px;
            margin-bottom: 25px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .hero-content h1 {
            font-size: 4.5rem;
            font-weight: 900;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 1.4rem;
            font-weight: 300;
            max-width: 800px;
            margin: 0 auto 40px;
            opacity: 0.95;
        }

        .hero-search {
            max-width: 700px;
            margin: 0 auto;
            display: flex;
            gap: 15px;
        }

        .search-input {
            flex: 1;
            padding: 18px 25px;
            border-radius: 50px;
            border: none;
            font-size: 1.05rem;
            font-family: 'Poppins', sans-serif;
        }

        .search-btn {
            background: var(--green);
            color: white;
            border: none;
            padding: 18px 40px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.05rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .search-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        /* Stats Section */
        .stats-section {
            padding: 80px 0;
            background: white;
            margin-top: -50px;
            position: relative;
            z-index: 20;
        }

        .stats-grid {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .stat-card {
            background: linear-gradient(135deg, #fafafa, #f0f0f0);
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            border: 2px solid #e8e8e8;
            transition: all 0.4s ease;
        }

        .stat-card:hover {
            transform: translateY(-10px);
            border-color: var(--maroon);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            background: white;
        }

        .stat-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, var(--maroon), #8b2329);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .stat-icon i {
            font-size: 32px;
            color: white;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 900;
            color: var(--maroon);
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 1rem;
            color: var(--text-gray);
            font-weight: 600;
        }

        /* Section Heading */
        .section-heading {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-label {
            display: inline-block;
            background: linear-gradient(135deg, var(--maroon), #8b2329);
            color: white;
            padding: 8px 25px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .section-heading h2 {
            font-size: 3rem;
            font-weight: 900;
            color: var(--black);
            margin-bottom: 15px;
        }

        .section-heading p {
            font-size: 1.2rem;
            color: var(--text-gray);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Filter Tabs */
        .filter-section {
            padding: 60px 0 40px;
            background: white;
        }

        .filter-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .filter-btn {
            background: white;
            color: var(--text-gray);
            border: 2px solid #e0e0e0;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: linear-gradient(135deg, var(--maroon), #8b2329);
            color: white;
            border-color: var(--maroon);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(112, 24, 31, 0.3);
        }

        /* Internship Listings */
        .listings-section {
            padding: 80px 0;
            background: #fafafa;
        }

        .listings-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .internship-card {
            background: white;
            border-radius: 20px;
            padding: 35px;
            margin-bottom: 25px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.06);
            transition: all 0.4s ease;
            display: grid;
            grid-template-columns: 100px 1fr auto;
            gap: 30px;
            align-items: center;
        }

        .internship-card:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 40px rgba(0,0,0,0.12);
        }

        .company-logo {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--maroon), #8b2329);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 900;
            font-size: 1.5rem;
        }

        .internship-details {
            flex: 1;
        }

        .internship-title {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--maroon);
            margin-bottom: 8px;
        }

        .company-name {
            font-size: 1.1rem;
            color: var(--green);
            font-weight: 700;
            margin-bottom: 15px;
        }

        .internship-meta {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
            color: var(--text-gray);
        }

        .meta-item i {
            color: var(--maroon);
            font-size: 1.1rem;
        }

        .internship-tags {
            display: flex;
            gap: 10px;
            margin-top: 15px;
            flex-wrap: wrap;
        }

        .tag {
            background: linear-gradient(135deg, #fff3e0, #ffe0b2);
            color: #e65100;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
        }

        .internship-actions {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .apply-btn {
            background: linear-gradient(135deg, var(--green), #52a045);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .apply-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(66, 125, 58, 0.4);
        }

        .save-btn {
            background: transparent;
            color: var(--maroon);
            border: 2px solid var(--maroon);
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .save-btn:hover {
            background: var(--maroon);
            color: white;
        }

        /* Benefits Section */
        .benefits-section {
            padding: 100px 0;
            background: white;
        }

        .benefits-grid {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
        }

        .benefit-card {
            background: linear-gradient(135deg, #fafafa, #f5f5f5);
            padding: 40px 35px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.4s ease;
            border: 2px solid transparent;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            border-color: var(--maroon);
            background: white;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        .benefit-icon {
            width: 90px;
            height: 90px;
            margin: 0 auto 25px;
            background: linear-gradient(135deg, var(--green), #52a045);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
        }

        .benefit-card:hover .benefit-icon {
            transform: scale(1.1) rotate(360deg);
        }

        .benefit-icon i {
            font-size: 45px;
            color: white;
        }

        .benefit-card h4 {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--maroon);
            margin-bottom: 15px;
        }

        .benefit-card p {
            font-size: 1rem;
            color: var(--text-gray);
            line-height: 1.7;
        }

        /* Application Process */
        .process-section {
            padding: 100px 0;
            background: #fafafa;
        }

        .process-timeline {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(to bottom, var(--maroon), var(--green));
            transform: translateX(-50%);
        }

        .process-step {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            margin-bottom: 60px;
            position: relative;
        }

        .process-step:nth-child(even) .step-content {
            order: 2;
        }

        .step-content {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }

        .step-number {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 60px;
            background: var(--green);
            border: 5px solid #fafafa;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: 900;
            box-shadow: 0 5px 15px rgba(66, 125, 58, 0.3);
        }

        .step-content h3 {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--maroon);
            margin-bottom: 15px;
        }

        .step-content p {
            font-size: 1.05rem;
            color: var(--text-gray);
            line-height: 1.8;
        }

        /* Success Stories */
        .stories-section {
            padding: 100px 0;
            background: white;
        }

        .stories-grid {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
        }

        .story-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
        }

        .story-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }

        .story-image {
            height: 250px;
            overflow: hidden;
            background: linear-gradient(135deg, var(--maroon), #8b2329);
        }

        .story-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .story-card:hover .story-image img {
            transform: scale(1.1);
        }

        .story-content {
            padding: 30px;
        }

        .story-content h4 {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--maroon);
            margin-bottom: 8px;
        }

        .story-company {
            font-size: 1rem;
            color: var(--green);
            font-weight: 700;
            margin-bottom: 15px;
        }

        .story-text {
            font-size: 0.95rem;
            color: var(--text-gray);
            line-height: 1.7;
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--maroon), #4a1014);
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -150px;
            right: -150px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255,255,255,0.1), transparent);
            border-radius: 50%;
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            padding: 0 20px;
        }

        .cta-content h3 {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 20px;
        }

        .cta-content p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            opacity: 0.95;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .cta-btn {
            background: white;
            color: var(--maroon);
            padding: 18px 50px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.15rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .cta-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
            color: var(--maroon);
        }

        .cta-btn.secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .cta-btn.secondary:hover {
            background: white;
            color: var(--maroon);
        }

        /* FAQ Section */
        .faq-section {
            padding: 100px 0;
            background: #fafafa;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .faq-item {
            background: white;
            border-radius: 15px;
            margin-bottom: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.06);
            overflow: hidden;
        }

        .faq-question {
            padding: 25px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: #fafafa;
        }

        .faq-question h4 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--maroon);
            margin: 0;
        }

        .faq-icon {
            font-size: 1.5rem;
            color: var(--maroon);
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-answer-content {
            padding: 0 30px 25px;
            font-size: 1.05rem;
            color: var(--text-gray);
            line-height: 1.8;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stories-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .process-timeline::before {
                left: 30px;
            }

            .process-step {
                grid-template-columns: 1fr;
                padding-left: 80px;
            }

            .step-number {
                left: 30px;
            }

            .process-step:nth-child(even) .step-content {
                order: 1;
            }
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }

            .section-heading h2 {
                font-size: 2rem;
            }

            .hero-search {
                flex-direction: column;
            }

            .internship-card {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .company-logo {
                margin: 0 auto;
            }

            .internship-actions {
                flex-direction: row;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
            }

            .stories-grid {
                grid-template-columns: 1fr;
            }

            .filter-container {
                flex-direction: column;
                align-items: stretch;
            }

            .filter-btn {
                width: 100%;
            }
        }