/* style/resources-daga88-registration-process.css */

/* Base styles for the page content */
.page-resources-daga88-registration-process {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-resources-daga88-registration-process__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-daga88-registration-process__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-daga88-registration-process__section:nth-of-type(even) {
    background-color: #fdfdfd;
}

.page-resources-daga88-registration-process__section-title {
    font-size: 2.5em;
    color: #B22222; /* Main color */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-daga88-registration-process__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Auxiliary color */
    border-radius: 2px;
}

.page-resources-daga88-registration-process__hero {
    background: linear-gradient(135deg, #B22222 0%, #d17a7a 100%); /* Adjusted main color for gradient */
    color: #fff;
    text-align: center;
    padding: 100px 0;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-daga88-registration-process__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-resources-daga88-registration-process__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    opacity: 0.9;
}

.page-resources-daga88-registration-process__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
}

.page-resources-daga88-registration-process__btn--primary {
    background-color: #FFD700; /* Auxiliary color */
    color: #998100; /* Darker variant for contrast */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-resources-daga88-registration-process__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-resources-daga88-registration-process__btn--secondary {
    background-color: #B22222; /* Main color */
    color: #fff;
    border: 2px solid #B22222;
    box-shadow: 0 4px 15px rgba(178, 34, 34, 0.4);
}

.page-resources-daga88-registration-process__btn--secondary:hover {
    background-color: #9a1e1e;
    border-color: #9a1e1e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(178, 34, 34, 0.6);
}

.page-resources-daga88-registration-process__btn--large {
    padding: 18px 40px;
    font-size: 1.3em;
}

.page-resources-daga88-registration-process__step-card {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-resources-daga88-registration-process__step-title {
    font-size: 1.8em;
    color: #B22222; /* Main color */
    margin-bottom: 20px;
}

.page-resources-daga88-registration-process__step-card p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
}

.page-resources-daga88-registration-process__list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
    display: inline-block; /* Center the list */
}

.page-resources-daga88-registration-process__list li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #444;
    position: relative;
    padding-left: 30px;
}

.page-resources-daga88-registration-process__list li::before {
    content: '✅'; /* Checkmark for general lists */
    position: absolute;
    left: 0;
    color: #FFD700; /* Auxiliary color */
    font-size: 1.2em;
    line-height: 1;
}

.page-resources-daga88-registration-process__list--checkmarks li::before {
    content: '✔️';
    color: #28a745; /* Green for success/checkmarks */
}

.page-resources-daga88-registration-process__list--stars li::before {
    content: '⭐';
    color: #FFD700;
}

.page-resources-daga88-registration-process__image-wrapper {
    margin: 30px auto;
    max-width: 800px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-daga88-registration-process__image {
    width: 100%;
    height: auto;
    display: block;
}

.page-resources-daga88-registration-process__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.page-resources-daga88-registration-process__faq-item {
    background-color: #fefefe;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.page-resources-daga88-registration-process__faq-question {
    font-size: 1.4em;
    color: #B22222; /* Main color */
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-resources-daga88-registration-process__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-resources-daga88-registration-process__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-resources-daga88-registration-process__faq-answer {
    font-size: 1.1em;
    color: #555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 10px;
}

.page-resources-daga88-registration-process__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding-top: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-resources-daga88-registration-process__hero-title {
        font-size: 2.5em;
    }

    .page-resources-daga88-registration-process__hero-subtitle {
        font-size: 1.2em;
    }

    .page-resources-daga88-registration-process__section-title {
        font-size: 2em;
    }

    .page-resources-daga88-registration-process__step-title {
        font-size: 1.5em;
    }

    .page-resources-daga88-registration-process__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-resources-daga88-registration-process__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .page-resources-daga88-registration-process__cta-group {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-resources-daga88-registration-process__hero-title {
        font-size: 2em;
    }

    .page-resources-daga88-registration-process__hero-subtitle {
        font-size: 1em;
    }

    .page-resources-daga88-registration-process__section-title {
        font-size: 1.8em;
    }

    .page-resources-daga88-registration-process__step-title {
        font-size: 1.3em;
    }

    .page-resources-daga88-registration-process__btn {
        width: 100%;
        margin-bottom: 15px;
    }

    .page-resources-daga88-registration-process__list {
        padding-left: 15px;
    }

    .page-resources-daga88-registration-process__list li {
        padding-left: 25px;
    }

    .page-resources-daga88-registration-process__list li::before {
        left: 0;
    }
}