/* style/original.css */
.page-original {
    color: #ffffff; /* Light text for dark body background */
    background-color: transparent; /* Body background is handled by shared.css */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensures content starts below fixed header */
}

.page-original__hero-section {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
    background-color: #1A1A1A; /* Auxiliary dark background for hero */
}

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

.page-original__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Slightly dim the background image to make text pop */
}

.page-original__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
    border-radius: 10px;
}

.page-original__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.page-original__hero-description {
    font-size: 1.3em;
    color: #f0f0f0;
    margin-bottom: 40px;
}

.page-original__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-original__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.page-original__btn--primary {
    background-color: #FFD700;
    color: #1A1A1A;
    border: 2px solid #FFD700;
}

.page-original__btn--primary:hover {
    background-color: #e0b800;
    transform: translateY(-3px);
}

.page-original__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-original__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A1A1A;
    transform: translateY(-3px);
}

.page-original__section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.page-original__section-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-original__text-content {
    font-size: 1.1em;
    color: #e0e0e0;
    margin-bottom: 30px;
    text-align: left;
}

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

.page-original__image-card {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-original__grid-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 2px solid #FFD700;
    filter: none; /* Ensure no CSS filters are applied */
}

.page-original__image-caption {
    font-size: 1.4em;
    color: #FFD700;
    margin-top: 20px;
    padding: 0 15px;
}

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

.page-original__feature-card {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-left: 5px solid #FFD700;
}

.page-original__feature-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-original__feature-description {
    font-size: 1em;
    color: #e0e0e0;
}

.page-original__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-original__btn--download {
    background-color: #FFD700;
    color: #1A1A1A;
    border: 2px solid #FFD700;
}

.page-original__btn--download:hover {
    background-color: #e0b800;
    transform: translateY(-3px);
}

.page-original__btn--register {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-original__btn--register:hover {
    background-color: #FFD700;
    color: #1A1A1A;
    transform: translateY(-3px);
}

.page-original__cta-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    margin-top: 50px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    filter: none; /* Ensure no CSS filters are applied */
}

.page-original__faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    text-align: left;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-original__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-original__faq-answer {
    font-size: 1em;
    color: #cccccc;
}

.page-original__btn--text {
    background-color: transparent;
    color: #FFD700;
    border: none;
    text-decoration: underline;
    padding: 10px 0;
    margin-top: 20px;
    font-size: 1.1em;
}

.page-original__btn--text:hover {
    color: #e0b800;
}

@media (max-width: 1024px) {
    .page-original__hero-title {
        font-size: 3em;
    }
    .page-original__hero-description {
        font-size: 1.2em;
    }
    .page-original__section-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-original {
        padding-top: var(--header-offset, 100px); /* Adjust for smaller header on mobile */
    }
    .page-original__hero-section {
        padding: 60px 15px;
    }
    .page-original__hero-title {
        font-size: 2.5em;
    }
    .page-original__hero-description {
        font-size: 1em;
    }
    .page-original__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-original__btn {
        width: 80%;
        max-width: 300px;
        padding: 12px 20px;
    }
    .page-original__section-title {
        font-size: 1.8em;
    }
    .page-original__text-content,
    .page-original__feature-description,
    .page-original__faq-answer {
        font-size: 0.95em;
    }
    .page-original__image-grid,
    .page-original__feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-original__grid-image,
    .page-original__cta-image {
        max-width: 100%;
        height: auto; /* Ensure images are responsive and don't overflow */
        filter: none; /* Ensure no CSS filters are applied */
    }
    .page-original__image-card,
    .page-original__feature-card,
    .page-original__faq-item {
        padding: 20px;
    }
    .page-original__hero-image-wrapper img, 
    .page-original__hero-image {
        max-width: 100%;
        height: auto;
    }
    .page-original__cta-image {
        max-width: 100%; /* Ensure mobile content area images do not overflow */
        height: auto;
    }
    /* Ensure all content area images are at least 200px wide for mobile, or respond with max-width: 100% */
    .page-original img {
        min-width: 200px; /* Base minimum size for all content images */
        min-height: 200px;
        object-fit: cover;
    }
    .page-original__grid-image,
    .page-original__cta-image {
        min-width: 250px;
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .page-original__hero-title {
        font-size: 2em;
    }
    .page-original__section-title {
        font-size: 1.6em;
    }
    .page-original__btn {
        width: 95%;
    }
}