/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #0B1215;
}


h1{
    font-size: clamp(2.4rem, 4.5vw, 4.5rem);
    line-height: 1.15;
}
h2{
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    line-height: 1.2;
}
h3{
    font-size: clamp(1.8rem, 3.2vw, 3rem);
    font-weight: 600;
    color: #0B1215;
    line-height: 1.35;
}
h4{
    font-size: clamp(1.6rem, 2.7vw, 2.6rem);
    color: #0B1215;
    line-height: 1.4;
}
/* h5{
    font-size: clamp(1.4rem, 2.3vw, 1.8rem);
    font-weight: 400;
    color: #0B1215;
    line-height: 1.45;
} */
h6{
    font-weight: 400;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    color: #0B1215;
    line-height: 1.5;
}
/* p{
    font-weight: 400;
    font-size:1.2rem;
    line-height: 1.6;
} */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 500px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    display: none !important;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    /* max-width: 1000px; */
    padding: 0 20px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.35);
}

/* Guest Contributors Section */
.guest-contributors-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.guest-contributors-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #28489A 0%, #1e3a8a 25%, #3b82f6 50%, #1e3a8a 75%, #28489A 100%);
}

.guest-contributors-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 40%;
    height: 200%;
    background: linear-gradient(45deg, transparent 0%, rgba(40, 72, 154, 0.03) 50%, transparent 100%);
    transform: rotate(15deg);
    pointer-events: none;
}

/* Become Contributor Section */
.become-contributor-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    transition: all 0.3s ease;
}

.become-contributor-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    /* background: linear-gradient(90deg, #28489A 0%, #1e3a8a 50%, #28489A 100%); */
}

.become-contributor-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    /* background: linear-gradient(90deg, #28489A 0%, #1e3a8a 50%, #28489A 100%); */
}

.section-title {
    font-size: 3.5rem;
    color: #28489A;
    font-weight: 700;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

/* .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #28489A 0%, #1e3a8a 100%);
    border-radius: 2px;
} */

.intro-text {
    /* max-width: 900px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 50px;
    text-align: center;
}

.intro-text p {
    /* max-width: 900px; */
    font-size: 1.6rem;
    text-align: center;
    color: #0B1215;
    line-height: 1.7;
    margin-bottom: 20px;
}

.intro-paragraph {
    /* max-width: 900px; */
    font-size: 1.8rem !important;
    margin-top: 30px !important;
    color: #0B1215 !important;
    font-weight: 500;
}

.faq-link, .faq-page-link {
    color: #28489A;
    text-decoration: none;
    font-weight: 1000;
}

.faq-link:hover, .faq-page-link:hover {
    text-decoration: underline;
}

.faq-page-link {
    display: inline-block;
    margin-top: 5px;
    font-size: 1.6rem;
}

/* Subsection Styles */
.subsection-title {
    font-size: 2.4rem;
    color: #28489A;
    margin: 50px 0 20px 0;
    font-weight: 700;
    text-align: center;
    position: relative;
}

/* .subsection-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #28489A;
    border-radius: 2px;
} */

.subsection-text {
    font-size: 1.6rem;
    color: #0B1215;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: center;
}

/* Content Topics Section */
.content-topics,
.publishing-process,
.general-scope {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(40, 72, 154, 0.12), 0 2px 8px rgba(40, 72, 154, 0.08);
    margin: 50px 0;
    border: 2px solid rgba(40, 72, 154, 0.08);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.content-topics::before,
.publishing-process::before,
.general-scope::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #28489A 0%, #1e3a8a 25%, #3b82f6 50%, #1e3a8a 75%, #28489A 100%);
    border-radius: 16px 16px 0 0;
}

.content-topics::after,
.publishing-process::after,
.general-scope::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 60%;
    height: 200%;
    background: linear-gradient(45deg, transparent 0%, rgba(40, 72, 154, 0.02) 50%, transparent 100%);
    transform: rotate(15deg);
    pointer-events: none;
}

.content-topics:hover,
.publishing-process:hover,
.general-scope:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(40, 72, 154, 0.15), 0 4px 12px rgba(40, 72, 154, 0.1);
    border-color: rgba(40, 72, 154, 0.15);
}

/* .contributor-form{
    max-width: 900px;
} */

/* Topics Checkbox Grid */
.topics-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 20px 0;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 2px solid rgba(40, 72, 154, 0.1);
}

.checkbox-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: white;
    border-radius: 8px;
    border: 1px solid rgba(40, 72, 154, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.checkbox-item:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    border-color: rgba(40, 72, 154, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 72, 154, 0.1);
}

.checkbox-item input[type="checkbox"] {
    margin-right: 12px;
    width: 18px;
    height: 18px;
    accent-color: #28489A;
    cursor: pointer;
}

.checkbox-item label {
    font-size: 1.5rem;
    color: #0B1215;
    cursor: pointer;
    margin: 0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.checkbox-item:hover label {
    color: #28489A;
}

.checkbox-item input[type="checkbox"]:checked + label {
    color: #28489A;
    font-weight: 600;
}

.checkbox-item:has(input[type="checkbox"]:checked) {
    background: linear-gradient(135deg, rgba(40, 72, 154, 0.1) 0%, rgba(40, 72, 154, 0.05) 100%);
    border-color: #28489A;
    border-left: 4px solid #28489A;
}

/* Topics List */
.topics-list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    
}

.topics-list li {
    font-size: 1.6rem;
    color: #0B1215;
    margin-bottom: 0;
    padding: 20px 25px 20px 60px;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border-left: 5px solid #28489A;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(40, 72, 154, 0.05);
}

.topics-list li:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(40, 72, 154, 0.12);
    border-left-color: #1e3a8a;
}

/* Center the last item in the topics list */
/* .topics-list li:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    min-width: 340px;
    max-width: 340px;
} */

.topics-list li:before {
    content: "✓";
    color: #ffffff;
    font-weight: bold;
    position: absolute;
    left: 18px;
    top: 18px;
    font-size: 1.4rem;
    background: #28489A;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(40, 72, 154, 0.3);
}

/* Scope List */
.scope-list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.scope-list li {
    font-size: 1.6rem;
    color: #0B1215;
    margin-bottom: 25px;
    padding: 25px 25px 25px 70px;
    position: relative;
    line-height: 1.7;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border-left: 5px solid #28489A;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(40, 72, 154, 0.05);
}

.scope-list li:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(40, 72, 154, 0.12);
    border-left-color: #1e3a8a;
}

.scope-list li:before {
    content: "→";
    color: #ffffff;
    font-weight: bold;
    position: absolute;
    left: 20px;
    top: 25px;
    font-size: 1.6rem;
    background: linear-gradient(135deg, #28489A 0%, #1e3a8a 100%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(40, 72, 154, 0.3);
}

/* Contact Form */
.contact-form {
    max-width: 500px;
    margin: 0 auto;
}

/* Required field indicator */
.required {
    color: #dc3545;
    font-weight: bold;
}

/* Field instruction text */
.field-instruction {
    font-size: 1.3rem;
    color: #666;
    margin: 5px 0 10px 0;
    font-style: italic;
}

/* Form disclaimer */
.form-disclaimer {
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-left: 4px solid #28489A;
    border-radius: 4px;
}

.form-disclaimer p {
    font-size: 1.4rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-column {
    flex: 1;
    min-width: 0; /* Prevent flex items from overflowing */
}

/* Full width rows */
.form-row.full-width-row {
    display: block;
    width: 100%;
}

.form-row.full-width-row .form-group {
    width: 100%;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #0B1215;
    font-size: 1.4rem;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 1.4rem;
    background-color: #ffffff;
    color: #0B1215;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #28489A;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(40, 72, 154, 0.1), 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0aec0;
    font-weight: 500;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Error message styling */
.validation-error {
    color: #dc3545;
    font-size: 1.2rem;
    margin-top: 5px;
    display: block;
    font-weight: 500;
}

.error-field {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1) !important;
}

.error-field:focus {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.2) !important;
}

/* Phone field error styling - separate borders for country selector and input */
.iti.error-iti .iti__selected-flag {
    border-color: #dc3545 !important;
    border-right: 1px solid #dc3545 !important;
}

.iti.error-iti input[type="tel"] {
    border-color: #dc3545 !important;
    border-left: 1px solid #dc3545 !important;
}

.iti.error-iti:focus-within .iti__selected-flag {
    border-color: #dc3545 !important;
    border-right: 1px solid #dc3545 !important;
}

.iti.error-iti:focus-within input[type="tel"] {
    border-color: #dc3545 !important;
    border-left: 1px solid #dc3545 !important;
}

/* International Phone Input Styling */
.iti {
    width: 100%;
    position: relative;
}

.iti__country-list {
    border: 1px solid #d1d5db;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    max-height: 240px;
    overflow-y: auto;
    margin-top: 2px;
    z-index: 1000;
    background: #ffffff;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.iti__country {
    padding: 12px 16px;
    font-size: 1.4rem;
    color: #374151;
    transition: background-color 0.15s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #f3f4f6;
    cursor: pointer;
    line-height: 1.4;
}

.iti__country:last-child {
    border-bottom: none;
    border-radius: 0 0 6px 6px;
}

.iti__country:first-child {
    border-radius: 6px 6px 0 0;
}

.iti__country:hover {
    background-color: #f9fafb;
    color: #1f2937;
}

.iti__country.iti__highlight {
    background-color: #eff6ff;
    color: #1d4ed8;
    border-left: 3px solid #3b82f6;
}

.iti__country-name {
    font-weight: 500;
    flex: 1;
}

.iti__dial-code {
    color: #6b7280;
    font-size: 13px;
    font-weight: 400;
    background: #f3f4f6;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
}

.iti__selected-flag {
    border-radius: 8px 0 0 8px;
    background-color: #f8f9fa;
    border: 2px solid #e1e8ed;
    border-right: 1px solid #e1e8ed;
    transition: all 0.3s ease;
    padding: 14px 12px;
    height: 100%;
    display: flex;
    align-items: center;
}

.iti__selected-flag:hover {
    background-color: #e9ecef;
}

.iti input[type="tel"] {
    border-radius:8px;
    border-left: none;
    padding-left: 12px;
    border: 2px solid #e1e8ed;
    border-left: 1px solid #e1e8ed;
    background-color: #ffffff;
    color: #2c3e50;
    font-size: 1.4rem;
    padding: 14px 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    width: 100%;
    height: 100%;
}

.iti input[type="tel"]:focus {
    outline: none;
    border-color: #28489A;
    background-color: #ffffff;
    /* box-shadow: 0 0 0 3px rgba(40, 72, 154, 0.1), 0 4px 12px rgba(0, 0, 0, 0.05); */
    /* transform: translateY(-1px); */
}

.iti input[type="tel"]:focus + .iti__selected-flag {
    border-color: #28489A;
}

.iti input[type="tel"]::placeholder {
    color: #a0aec0;
    font-weight: 400;
}

/* Fix the container styling */
.iti__flag-container {
    border-radius: 8px 0 0 8px;
}

/* Ensure proper alignment */
.iti__selected-flag .iti__flag {
    margin-right: 10px;
    width: 18px;
    height: 13px;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    border: 0.5px solid rgba(0, 0, 0, 0.1);
}

.iti__selected-flag .iti__arrow {
    margin-left: 8px;
    border-top: 4px solid #6b7280;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    transition: all 0.15s ease;
}

.iti__selected-flag:hover .iti__arrow {
    border-top-color: #374151;
}

/* Flag styling in dropdown */
.iti__country .iti__flag {
    width: 18px;
    height: 13px;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    border: 0.5px solid rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

/* Fix focus state for the entire phone input */
.iti:focus-within .iti__selected-flag {
    border-color: #28489A;
    background-color: #f8fafc;
}

.iti:focus-within input[type="tel"] {
    border-color: #28489A;
    box-shadow: 0 0 0 3px rgba(40, 72, 154, 0.1), 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

/* Ensure consistent height */
.iti__selected-flag,
.iti input[type="tel"] {
    min-height: 48px;
    box-sizing: border-box;
}

/* Fix any border issues */
.iti__selected-flag {
    border-right: 1px solid #e1e8ed !important;
}

.iti input[type="tel"] {
    border-left: 1px solid #e1e8ed !important;
}

/* Professional scrollbar styling */
.iti__country-list::-webkit-scrollbar {
    width: 4px;
}

.iti__country-list::-webkit-scrollbar-track {
    background: transparent;
}

.iti__country-list::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 2px;
}

.iti__country-list::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

/* Search input in dropdown */
.iti__search-input {
    padding: 12px 16px;
    border: none;
    border-bottom: 1px solid #e5e7eb;
    font-size: 14px;
    background: #fafafa;
    border-radius: 6px 6px 0 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #374151;
}

.iti__search-input:focus {
    outline: none;
    background: white;
    border-bottom-color: #3b82f6;
}

.iti__search-input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

/* No results message */
.iti__no-results {
    padding: 16px;
    color: #6b7280;
    font-size: 14px;
    text-align: center;
    font-style: normal;
    background: #f9fafb;
}


/* Consent Text */
.consent-text {
    margin-bottom: 25px;
    text-align: left;
}

.consent-text p {
    font-size: 1.6rem;
    color: #0B1215;
    line-height: 1.6;
}

.privacy-link {
    color: #28489A;
    text-decoration: none;
    font-weight: 500;
}

.privacy-link:hover {
    text-decoration: underline;
}

/* reCAPTCHA Container */
.recaptcha-container {
    margin-bottom: 30px;
    text-align: center;
}

.recaptcha-container .g-recaptcha {
    display: inline-block;
}

/* Submit Button */
.form-submit {
    text-align: center;
}

.submit-btn {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 180px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.submit-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #E55A2B 0%, #E0841A 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.1);
}

/* Map Section */
.map-section {
    padding: 0;
    background: #f8f9fa;
}

.map-container {
    width: 100%;
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem !important;
        letter-spacing: 1px;
    }
    
    .section-title {
        font-size: 2.5rem !important;
        margin-bottom: 30px;
    }
    
    .subsection-title {
        font-size: 2rem !important;
        margin: 30px 0 15px 0;
    }
    
    .content-topics,
    .publishing-process,
    .general-scope {
        padding: 25px;
        margin: 25px 0;
    }
    
    .topics-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .topics-list li,
    .scope-list li {
        padding: 15px 15px 15px 45px;
    }
    
    /* Topics Checkbox Grid - Mobile */
    .topics-checkbox-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 15px;
    }
    
    .checkbox-item {
        padding: 10px 12px;
    }
    
    .checkbox-item label {
        font-size: 1.4rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-column {
        margin-bottom: 15px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .intro-text p {
        font-size: 1.4rem;
    }
    
    .intro-paragraph {
        font-size: 1.6rem !important;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        min-height: 400px;
    }
    
    .guest-contributors-section,
    .become-contributor-section {
        padding: 50px 0;
    }
    
    .contact-form {
        max-width: 100%;
    }
}


@media (max-width: 480px) {
    .hero-title {
        font-size: 3.5rem !important;
    }
    
    .section-title {
        font-size: 2.5rem !important;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
    }
    
    .submit-btn {
        padding: 12px 30px;
        font-size: 1.4rem;
    }
    
    .hero-section {
        min-height: 300px;
    }
    
    .get-in-touch-section {
        padding: 50px 0;
    }
}

/* CMS-managed creators sections */
.creators-cms-section {
    padding: 80px 0;
}

.creators-content-block {
    margin: 40px auto;
    max-width: 960px;
    text-align: center;
}

.creators-content-block + .creators-content-block {
    margin-top: 60px;
}

.creators-rich-text,
.creators-secondary-text {
    text-align: center;
}

.creators-rich-text p,
.creators-secondary-text p {
    font-size: 1.6rem;
    color: #0B1215;
    line-height: 1.7;
}

.creators-secondary-text {
    margin-top: 20px;
}

.creators-text-panel {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    padding: 50px 60px;
    box-shadow: 0 18px 50px rgba(40, 72, 154, 0.12);
    border: 1px solid rgba(40, 72, 154, 0.08);
    margin: 60px auto;
    max-width: 1100px;
    position: relative;
}

.creators-text-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #28489A 0%, #1e3a8a 25%, #3b82f6 50%, #1e3a8a 75%, #28489A 100%);
    border-radius: 24px 24px 0 0;
}

.creators-text-panel .creators-panel-title {
    font-size: 2.4rem;
    color: #28489A;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.creators-text-panel .creators-panel-body {
    font-size: 1.6rem;
    color: #0B1215;
    line-height: 1.9;
    text-align: left;
    display: grid;
    gap: 18px;
}

.creators-text-panel .creators-panel-body p {
    margin-bottom: 0;
}

.creators-list-section {
    margin: 50px 0;
}

.topics-list.columns-1 { grid-template-columns: repeat(1, minmax(280px, 1fr)); }
.topics-list.columns-2 { grid-template-columns: repeat(2, minmax(280px, 1fr)); }
.topics-list.columns-3 { grid-template-columns: repeat(3, minmax(220px, 1fr)); }
.topics-list.columns-4 { grid-template-columns: repeat(4, minmax(200px, 1fr)); }

.creators-feature-block {
    margin: 50px 0;
}

.creators-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.creators-feature-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 10px 32px rgba(40, 72, 154, 0.08);
    border: 1px solid rgba(40, 72, 154, 0.08);
    text-align: left;
}

.creators-feature-item h4 {
    font-size: 1.8rem;
    color: #28489A;
    margin-bottom: 12px;
}

.creators-feature-item p {
    font-size: 1.5rem;
    color: #0B1215;
    line-height: 1.6;
}

.creators-hero .hero-title {
    font-size: clamp(3rem, 5vw, 5rem);
}

.creators-hero .hero-subtitle {
    margin-top: 18px;
    font-size: 2rem;
    color: #f8f9fa;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.creators-hero .hero-text {
    margin-top: 24px;
    font-size: 1.6rem;
}

.creators-text-panel .creators-panel-body > * {
    font-size: 1.6rem;
    color: #0B1215;
    line-height: 1.9;
}

@media (max-width: 992px) {
    .creators-text-panel {
        padding: 40px;
    }

    .topics-list.columns-3,
    .topics-list.columns-4 {
        grid-template-columns: repeat(2, minmax(200px, 1fr));
    }
}

@media (max-width: 640px) {
    .creators-text-panel {
        padding: 32px 24px;
        margin: 40px auto;
    }

    .topics-list,
    .topics-list.columns-2,
    .topics-list.columns-3,
    .topics-list.columns-4 {
        grid-template-columns: 1fr;
    }

    .topics-list li,
    .scope-list li {
        padding: 16px 18px 16px 54px;
        font-size: 1.4rem;
    }

    .topics-list li:before,
    .scope-list li:before {
        left: 16px;
        top: 16px;
        width: 22px;
        height: 22px;
        font-size: 1.2rem;
    }

    .scope-list {
        gap: 16px;
    }
}
