/* style/index.css */
.page-index {
    font-family: 'Arial', sans-serif;
    color: #e5dfd3; /* Light text on dark background */
    background-color: #1A202C;
}

.page-index-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-index-btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
    text-align: center;
}

.page-index-btn-primary {
    background-color: #FFD700; /* Gold */
    color: #1A202C; /* Dark text on gold */
}

.page-index-btn-primary:hover {
    background-color: #e6c200; /* Darker gold */
    color: #000;
}

.page-index-btn-secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
    margin-left: 15px;
}

.page-index-btn-secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
}

.page-index-btn-tertiary {
    background-color: #364156; /* Darker blue/grey */
    color: #FFD700;
    border: 1px solid #FFD700;
}

.page-index-btn-tertiary:hover {
    background-color: #FFD700;
    color: #1A202C;
}

.page-index-section-title {
    font-size: 38px;
    color: #FFD700; /* Gold */
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-index-sub-title {
    font-size: 30px;
    color: #FFD700;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-index-feature-title {
    font-size: 24px;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 10px;
    font-weight: 500;
}

.page-index-section-description {
    font-size: 18px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.page-index-hero {
    background: linear-gradient(135deg, #1A202C 0%, #364156 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.15;
}

.page-index-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(5px);
}

.page-index-hero > .page-index-container {
    position: relative;
    z-index: 1;
}

.page-index-hero-title {
    font-size: 48px;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 800;
}

.page-index-hero-description {
    font-size: 20px;
    max-width: 900px;
    margin: 0 auto 40px auto;
    line-height: 1.7;
    color: #e5dfd3;
}

.page-index-hero-ctas {
    margin-top: 30px;
}

.page-index-about {
    padding: 80px 0;
    background-color: #1a202c;
}

.page-index-about-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-index-about-text {
    flex: 1;
    text-align: left;
}

.page-index-about-text h3 {
    color: #FFD700;
    font-size: 28px;
    margin-bottom: 20px;
}

.page-index-about-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.page-index-about-image {
    flex: 1;
    text-align: center;
}

.page-index-img-responsive {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index-deep-content {
    padding: 80px 0;
    background-color: #242c3d;
}

.page-index-deep-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #e5dfd3;
}

.page-index-deep-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-index-deep-content ul li {
    background-color: #364156;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    font-size: 17px;
    line-height: 1.6;
    color: #e5dfd3;
}

.page-index-deep-content ul li strong {
    color: #FFD700;
    margin-right: 10px;
    flex-shrink: 0;
}

.page-index-deep-content img {
    margin: 30px auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index-detail-pages {
    padding: 80px 0;
    background-color: #1A202C;
}

.page-index-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-detail-item {
    background-color: #242c3d;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-index-item-title {
    font-size: 22px;
    margin-bottom: 15px;
}

.page-index-item-title a {
    color: #FFD700;
    text-decoration: none;
}

.page-index-item-title a:hover {
    text-decoration: underline;
}

.page-index-item-description {
    font-size: 16px;
    line-height: 1.6;
    color: #b0b8c2;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-index-cta-bottom {
    padding: 80px 0;
    background: linear-gradient(45deg, #FFD700 0%, #e6c200 100%);
    text-align: center;
}

.page-index-cta-bottom .page-index-section-title {
    color: #1A202C;
}

.page-index-cta-bottom .page-index-section-description {
    color: #1A202C;
}

.page-index-cta-buttons .page-index-btn-primary {
    background-color: #1A202C;
    color: #FFD700;
}

.page-index-cta-buttons .page-index-btn-primary:hover {
    background-color: #364156;
    color: #FFD700;
}

.page-index-cta-buttons .page-index-btn-secondary {
    background-color: transparent;
    color: #1A202C;
    border: 2px solid #1A202C;
}

.page-index-cta-buttons .page-index-btn-secondary:hover {
    background-color: #1A202C;
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-hero-title {
        font-size: 40px;
    }
    .page-index-section-title {
        font-size: 32px;
    }
    .page-index-about-content {
        flex-direction: column;
        text-align: center;
    }
    .page-index-about-text {
        text-align: center;
    }
    .page-index-about-image {
        order: -1; /* Image above text on smaller screens */
    }
}

@media (max-width: 768px) {
    .page-index-hero {
        padding: 80px 0;
    }
    .page-index-hero-title {
        font-size: 32px;
    }
    .page-index-hero-description {
        font-size: 18px;
    }
    .page-index-btn {
        padding: 10px 20px;
        font-size: 15px;
    }
    .page-index-btn-secondary {
        margin-left: 10px;
    }
    .page-index-section-title {
        font-size: 28px;
    }
    .page-index-sub-title {
        font-size: 24px;
    }
    .page-index-feature-title {
        font-size: 20px;
    }
    .page-index-section-description {
        font-size: 16px;
    }
    .page-index-deep-content ul li {
        font-size: 15px;
        padding: 12px 15px;
    }
    .page-index-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-index-hero-title {
        font-size: 28px;
    }
    .page-index-hero-description {
        font-size: 16px;
    }
    .page-index-hero-ctas {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .page-index-btn-secondary {
        margin-left: 0;
    }
    .page-index-section-title {
        font-size: 24px;
    }
    .page-index-sub-title {
        font-size: 20px;
    }
    .page-index-feature-title {
        font-size: 18px;
    }
    .page-index-section-description {
        font-size: 15px;
    }
    .page-index-deep-content ul li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .page-index-deep-content ul li strong {
        margin-bottom: 5px;
        margin-right: 0;
    }
}