.page-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

/* Hero Section Styles */
.hero-section {
    background: linear-gradient(135deg, #04205F 0%, #1a4a8a 100%);
    padding: 120px 0 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    color: #fff;
}

.hero-content .subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 300;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Bento Grid Styles */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.bento-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #E4007D 0%, #04205F 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-card.featured {
    background: linear-gradient(135deg, #04205F 0%, #1a4a8a 100%);
    color: white;
    grid-column: span 2;
}

.bento-card.featured h3,
.bento-card.featured .bento-icon {
    color: #fff;
}

.bento-card.featured::before {
    background: linear-gradient(180deg, #E4007D 0%, #ff6bb3 100%);
    opacity: 1;
}

.bento-icon {
    font-size: 48px;
    color: #E4007D;
    margin-bottom: 20px;
    display: inline-block;
}

.bento-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #04205F;
    margin-bottom: 20px;
    line-height: 1.3;
}

.bento-card .bento-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    font-weight: 500;
}

.bento-card.featured .bento-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.bento-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bento-card ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
    line-height: 1.8;
}

.bento-card.featured ul li {
    color: rgba(255, 255, 255, 0.95);
}

.bento-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #E4007D;
    font-weight: bold;
    font-size: 1.2rem;
}

.bento-card.featured ul li::before {
    color: #ff6bb3;
}

.bento-card .highlight {
    background: rgba(228, 0, 125, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 600;
    color: #E4007D;
}

.bento-card.featured .highlight {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Infinite Scroll Logo Bar */
.logo-scroll-container {
    overflow: hidden;
    background: #f8f9fa;
    padding: 40px 0;
    position: relative;
}

.logo-scroll-wrapper {
    display: flex;
    animation: scroll 30s linear infinite;
    gap: 60px;
    align-items: center;
}

.logo-scroll-wrapper:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 80px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 15px;
    transition: transform 0.3s ease;
}

.logo-item:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.logo-item .logo-text {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-align: center;
}

/* Feature Table Styles */
.feature-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.feature-table thead {
    background: linear-gradient(135deg, #04205F 0%, #1a4a8a 100%);
    color: white;
}

.feature-table th {
    padding: 20px;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
}

.feature-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    line-height: 1.8;
}

.feature-table tbody tr:hover {
    background: #f8f9fa;
}

.feature-table tbody tr:last-child td {
    border-bottom: none;
}

/* Text Content Styles */
.intro-text {
    font-size: 1.1rem;
    line-height: 2;
    color: #555;
    text-align: justify;
}

.intro-text strong {
    color: #04205F;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-card.featured {
        grid-column: span 1;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content .subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .bento-card {
        padding: 30px 20px;
    }

    .feature-table {
        font-size: 0.9rem;
    }

    .feature-table th,
    .feature-table td {
        padding: 12px 15px;
    }
}
