/* style/resources-79king-registration-process.css */

:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #1A1A1A; /* Dark Grey/Black */
    --text-light: #FFFFFF; /* White */
    --text-dark: #333333; /* Dark Grey for light backgrounds */
    --bg-light: #F8F8F8; /* Light background */
    --bg-dark: #2C2C2C; /* Dark background */
    --accent-color: #E74C3C; /* Red for emphasis */
}

.page-resources-79king-registration-process {
    font-family: 'Arial', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
}

.page-resources-79king-registration-process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.page-resources-79king-registration-process-hero {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background-color: var(--secondary-color); /* Dark background for hero */
    color: var(--text-light);
}

.page-resources-79king-registration-process-hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-resources-79king-registration-process-hero-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 30px;
}

.page-resources-79king-registration-process-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-resources-79king-registration-process-hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-79king-registration-process-hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: var(--text-light);
}

.page-resources-79king-registration-process-cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.page-resources-79king-registration-process-cta-button:hover {
    background: #FFC107; /* Slightly darker gold */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-79king-registration-process-small-button {
    padding: 10px 25px;
    font-size: 1em;
}

/* General Section Styling */
.page-resources-79king-registration-process-section {
    padding: 60px 0;
    background-color: var(--bg-light);
    border-bottom: 1px solid #eee;
}

.page-resources-79king-registration-process-section:nth-of-type(even) {
    background-color: #f0f0f0;
}

.page-resources-79king-registration-process-section-title {
    font-size: 2.5em;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-79king-registration-process-section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.page-resources-79king-registration-process-paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.page-resources-79king-registration-process-list {
    list-style-type: disc;
    padding-left: 30px;
    margin-bottom: 20px;
}

.page-resources-79king-registration-process-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: var(--text-dark);
}

.page-resources-79king-registration-process-list li strong {
    color: var(--secondary-color);
}

.page-resources-79king-registration-process-image-full-width {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Step-by-step Guide */
.page-resources-79king-registration-process-step-item {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--primary-color);
}

.page-resources-79king-registration-process-step-title {
    font-size: 1.8em;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-resources-79king-registration-process-step-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.page-resources-79king-registration-process-faq-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.page-resources-79king-registration-process-faq-section .page-resources-79king-registration-process-section-title {
    color: var(--primary-color);
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #444;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: var(--secondary-color);
    color: var(--text-light);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #3a3a3a;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: var(--primary-color);
}

.faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    background: #333333;
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Sufficient height for content */
    padding: 25px;
}

.faq-answer p {
    margin: 0;
    font-size: 1.05em;
}

/* Contact Section */
.page-resources-79king-registration-process-contact {
    background-color: var(--bg-light);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-79king-registration-process-hero-title {
        font-size: 2.5em;
    }
    .page-resources-79king-registration-process-hero-description {
        font-size: 1.1em;
    }
    .page-resources-79king-registration-process-section-title {
        font-size: 2em;
    }
    .page-resources-79king-registration-process-paragraph,
    .page-resources-79king-registration-process-list li {
        font-size: 1em;
    }
    .page-resources-79king-registration-process-step-title {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-resources-79king-registration-process-hero {
        padding: 40px 15px;
    }
    .page-resources-79king-registration-process-hero-title {
        font-size: 2em;
    }
    .page-resources-79king-registration-process-hero-description {
        font-size: 0.95em;
    }
    .page-resources-79king-registration-process-cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
    .page-resources-79king-registration-process-section {
        padding: 40px 0;
    }
    .page-resources-79king-registration-process-section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-resources-79king-registration-process-step-item {
        padding: 20px;
    }
    .page-resources-79king-registration-process-step-title {
        font-size: 1.4em;
    }
    .faq-question {
        padding: 15px 20px;
    }
    .faq-question h3 {
        font-size: 1.1em;
    }
    .faq-toggle {
        font-size: 20px;
    }
    .faq-answer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-resources-79king-registration-process-hero-title {
        font-size: 1.8em;
    }
    .page-resources-79king-registration-process-hero-description {
        font-size: 0.9em;
    }
    .page-resources-79king-registration-process-cta-button {
        padding: 10px 25px;
        font-size: 0.9em;
    }
    .page-resources-79king-registration-process-section-title {
        font-size: 1.5em;
    }
    .page-resources-79king-registration-process-paragraph,
    .page-resources-79king-registration-process-list li {
        font-size: 0.9em;
    }
    .page-resources-79king-registration-process-step-title {
        font-size: 1.2em;
    }
    .faq-question h3 {
        font-size: 1em;
    }
    .faq-answer p {
        font-size: 0.95em;
    }
}