/* style/promotions-new-user-registration-details.css */

/* Base styles for the page content, ensuring contrast with dark body background */
.page-promotions-new-user-registration-details {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Light text for dark body background */
    background-color: transparent; /* Body background handled by shared.css */
}

.page-promotions-new-user-registration-details__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Section styling */
.page-promotions-new-user-registration-details__section-title {
    font-size: 2.5em;
    color: #26A9E0; /* Brand color for titles */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-promotions-new-user-registration-details__section-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

/* Hero Section */
.page-promotions-new-user-registration-details__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 600px;
    background-color: #0a0a0a; /* Ensure a dark background for the hero for contrast */
    overflow: hidden;
    padding: 80px 20px; /* Default padding */
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.page-promotions-new-user-registration-details__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.3; /* Darken the image for text readability */
}

.page-promotions-new-user-registration-details__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    color: #ffffff;
}

.page-promotions-new-user-registration-details__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #26A9E0; /* Brand color for main title */
    font-weight: bold;
    line-height: 1.2;
}

.page-promotions-new-user-registration-details__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

/* Buttons */
.page-promotions-new-user-registration-details__btn-primary,
.page-promotions-new-user-registration-details__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 10px;
    box-sizing: border-box;
    text-align: center;
}

.page-promotions-new-user-registration-details__btn-primary {
    background-color: #26A9E0;
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-promotions-new-user-registration-details__btn-primary:hover {
    background-color: #1a7aab;
    border-color: #1a7aab;
}

.page-promotions-new-user-registration-details__btn-secondary {
    background-color: transparent;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-promotions-new-user-registration-details__btn-secondary:hover {
    background-color: #26A9E0;
    color: #ffffff;
}

/* Offer Overview Section */
.page-promotions-new-user-registration-details__offer-overview {
    padding: 60px 0;
    background-color: #1a1a1a; /* Slightly lighter dark background for contrast */
    color: #ffffff;
}

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

.page-promotions-new-user-registration-details__feature-item {
    background-color: rgba(255, 255, 255, 0.05); /* Semi-transparent white card for dark background */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-promotions-new-user-registration-details__feature-item:hover {
    transform: translateY(-5px);
}

.page-promotions-new-user-registration-details__feature-icon {
    width: 100%; /* Ensure images take full width of card */
    max-width: 400px; /* Example max-width, adjust as needed */
    height: auto;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 5px;
}

.page-promotions-new-user-registration-details__feature-title {
    font-size: 1.5em;
    color: #26A9E0;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-new-user-registration-details__feature-text {
    font-size: 1em;
    color: #f0f0f0;
}

/* Why Choose Section */
.page-promotions-new-user-registration-details__why-choose {
    padding: 60px 0;
    background-color: #0a0a0a; /* Consistent dark background */
    color: #ffffff;
}

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

.page-promotions-new-user-registration-details__advantage-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-promotions-new-user-registration-details__advantage-title {
    font-size: 1.4em;
    color: #26A9E0;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions-new-user-registration-details__advantage-text {
    font-size: 0.95em;
    color: #f0f0f0;
}

/* How to Claim Section */
.page-promotions-new-user-registration-details__how-to-claim {
    padding: 60px 0;
    background-color: #26A9E0; /* Brand color for background */
    color: #ffffff; /* White text for brand color background */
}

.page-promotions-new-user-registration-details__how-to-claim .page-promotions-new-user-registration-details__section-title,
.page-promotions-new-user-registration-details__how-to-claim .page-promotions-new-user-registration-details__section-description {
    color: #ffffff;
}

.page-promotions-new-user-registration-details__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-new-user-registration-details__step-item {
    background-color: rgba(255, 255, 255, 0.1); /* Lighter background for steps */
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions-new-user-registration-details__step-number {
    font-size: 2.5em;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-weight: bold;
}

.page-promotions-new-user-registration-details__step-title {
    font-size: 1.4em;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions-new-user-registration-details__step-text {
    font-size: 0.95em;
    color: #f0f0f0;
}

.page-promotions-new-user-registration-details__cta-wrapper {
    text-align: center;
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Terms & Conditions Section */
.page-promotions-new-user-registration-details__terms-conditions {
    padding: 60px 0;
    background-color: #0a0a0a; /* Dark background */
    color: #ffffff;
}

.page-promotions-new-user-registration-details__terms-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-promotions-new-user-registration-details__terms-list li {
    background-color: rgba(255, 255, 255, 0.05);
    margin-bottom: 15px;
    padding: 20px;
    border-left: 5px solid #26A9E0;
    border-radius: 5px;
    font-size: 1.05em;
    color: #f0f0f0;
}

.page-promotions-new-user-registration-details__list-highlight {
    color: #26A9E0;
}

/* FAQ Section */
.page-promotions-new-user-registration-details__faq-section {
    padding: 60px 0;
    background-color: #1a1a1a; /* Slightly lighter dark background */
    color: #ffffff;
}

.page-promotions-new-user-registration-details__faq-list {
    margin-top: 40px;
}

.page-promotions-new-user-registration-details__faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-promotions-new-user-registration-details__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.page-promotions-new-user-registration-details__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.page-promotions-new-user-registration-details__faq-title {
    font-size: 1.2em;
    color: #ffffff;
    margin: 0;
    font-weight: bold;
}

.page-promotions-new-user-registration-details__faq-toggle {
    font-size: 1.8em;
    color: #26A9E0;
    font-weight: bold;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-promotions-new-user-registration-details__faq-item.active .page-promotions-new-user-registration-details__faq-toggle {
    transform: rotate(45deg);
}