/* Font Face */
@font-face {
    font-family: 'SF Mada';
    src: url('font/SF Mada.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'SF Mada';
    src: url('font/alfont_com_مدى-عريض.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

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

body {
    font-family: 'SF Mada', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
}

/* Header Navigation */
.main-header {
    background: linear-gradient(135deg, #5d2a5e 0%, #7a3a7c 100%);
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    border-radius: 5px;
    white-space: nowrap;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: calc(100vh - 82px);
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(40, 40, 40, 0.9) 100%),
                url('images/Images-04.png') center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
}

.hero-content {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    text-align: right;
    animation: fadeInRight 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #e0e0e0;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #5d2a5e;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.4);
    background: #f5f5f5;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInLeft 1s ease-out;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(218, 165, 32, 0.4));
    animation: float 3s ease-in-out infinite;
}

/* Animations */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* About Section */
.about-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    color: #5d2a5e;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
}

.about-text {
    font-size: 1.2rem;
    line-height: 2;
    color: #333;
    text-align: justify;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
}

.icon-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.icon-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

.icon-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(93, 42, 94, 0.2);
    border-color: #5d2a5e;
}

.icon-card .icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.icon-card h3 {
    font-size: 1.5rem;
    color: #5d2a5e;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .nav-menu li a {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .nav-menu li a {
        font-size: 0.85rem;
        padding: 0.4rem 0.6rem;
    }

    .hero {
        min-height: auto;
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .hero-image img {
        max-width: 80%;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #5d2a5e 0%, #7a3a7c 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
    margin: 0;
}

/* Page Content */
.page-content {
    padding: 4rem 2rem;
    background: #f8f8f8;
}

.content-section {
    background: white;
    padding: 3rem;
    margin-bottom: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.content-title {
    font-size: 2.5rem;
    color: #5d2a5e;
    margin-bottom: 2rem;
    font-weight: 700;
    border-right: 5px solid #5d2a5e;
    padding-right: 1rem;
}

.content-text {
    font-size: 1.1rem;
    line-height: 2;
    color: #333;
}

.content-text p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.content-text h3 {
    color: #5d2a5e;
    font-size: 1.8rem;
    margin: 2rem 0 1.5rem;
    font-weight: 600;
}

.content-text h4 {
    color: #7a3a7c;
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.styled-list {
    list-style: none;
    padding-right: 0;
    margin: 1.5rem 0;
}

.styled-list li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    margin-bottom: 0.8rem;
}

.styled-list li::before {
    content: "◆";
    color: #5d2a5e;
    font-weight: bold;
    position: absolute;
    right: 0;
}

.numbered-list {
    padding-right: 2rem;
    margin: 1.5rem 0;
}

.numbered-list li {
    padding: 0.8rem 0;
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

/* Highlight Section */
.highlight-section {
    background: linear-gradient(135deg, #f8f0f8 0%, #ffffff 100%);
    border-right: 5px solid #5d2a5e;
}

.vision-text {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 2.2;
    color: #5d2a5e;
    text-align: center;
    padding: 2rem;
}

/* Quick Links Section */
.quick-links-section {
    margin: 3rem 0;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.quick-link-card {
    background: linear-gradient(135deg, #5d2a5e 0%, #7a3a7c 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(93, 42, 94, 0.3);
}

.quick-link-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(93, 42, 94, 0.5);
}

.quick-link-card .icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.quick-link-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: white;
}

.quick-link-card p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

/* Details/Accordion */
details {
    background: #f8f0f8;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    border-right: 3px solid #5d2a5e;
}

summary {
    font-size: 1.3rem;
    font-weight: 600;
    color: #5d2a5e;
    cursor: pointer;
    padding: 0.5rem;
    user-select: none;
}

summary:hover {
    background: rgba(93, 42, 94, 0.1);
    border-radius: 5px;
}

details[open] summary {
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #5d2a5e;
    padding-bottom: 1rem;
}

.criteria-details,
.terms-details {
    margin-top: 2rem;
}

.terms-category {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
}

/* CTA Section */
.cta-section {
    margin: 4rem 0;
}

.cta-box {
    background: linear-gradient(135deg, #5d2a5e 0%, #7a3a7c 100%);
    padding: 4rem 3rem;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(93, 42, 94, 0.3);
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-box p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Footer */
.main-footer {
    background: #2a2a2a;
    color: white;
    padding: 2rem;
    text-align: center;
    margin-top: 4rem;
}

.main-footer p {
    margin: 0;
    font-size: 1.1rem;
}

/* Responsive for internal pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .content-section {
        padding: 2rem 1.5rem;
    }

    .content-title {
        font-size: 1.8rem;
    }

    .content-text {
        font-size: 1rem;
    }

    .cta-box {
        padding: 2.5rem 2rem;
    }

    .cta-box h2 {
        font-size: 1.8rem;
    }

    .quick-link-card {
        padding: 2rem;
    }
}

/* Categories Page - Dark Design */
.page-title-dark {
    background: linear-gradient(135deg, #1a2332 0%, #2d3e50 100%);
    padding: 3rem 2rem;
    text-align: center;
}

.page-title-dark h1 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

.categories-page {
    background: #f5f5f5;
}

.container-full {
    max-width: 100%;
    padding: 0;
}

.category-section {
    background: linear-gradient(135deg, #1a2332 0%, #2d3e50 100%);
    padding: 4rem 2rem;
    margin: 0;
}

.category-section:nth-child(even) {
    background: linear-gradient(135deg, #2d3e50 0%, #1a2332 100%);
}

.category-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.trophy-icon {
    margin-bottom: 2rem;
}

.trophy-icon img {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(218, 165, 32, 0.6));
}

.category-title {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 3rem;
    font-weight: 700;
}

.category-info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.info-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.info-value {
    font-size: 1.3rem;
    color: white;
    font-weight: 600;
}

.category-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.cta-section-dark {
    background: linear-gradient(135deg, #5d2a5e 0%, #7a3a7c 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.cta-section-dark h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.cta-button-light {
    display: inline-block;
    background: white;
    color: #5d2a5e;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cta-button-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.4);
}

.footer-image {
    background: #1a2332;
    padding: 3rem 0;
    text-align: center;
}

.footer-image img {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(218, 165, 32, 0.6));
}

.main-footer-dark {
    background: #0f1419;
    color: white;
    padding: 2rem;
    text-align: center;
}

.main-footer-dark p {
    margin: 0;
    font-size: 1.1rem;
}

/* Prize Summary */
.prize-summary {
    margin: 4rem 0;
}

.summary-box {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    color: #333;
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.3);
}

.summary-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 700;
}

.total-prize {
    font-size: 4rem;
    font-weight: 900;
    margin: 1rem 0;
    color: #5d2a5e;
}

.summary-box p {
    font-size: 1.3rem;
    margin: 0;
    font-weight: 600;
}

/* Responsive for categories */
@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .category-card {
        padding: 2rem;
    }

    .category-name {
        font-size: 1.5rem;
    }

    .total-prize {
        font-size: 3rem;
    }
}

/* Timeline Page - Light Design */
.timeline-page-light {
    background: #f8f8f8;
}

.page-title-light {
    background: linear-gradient(135deg, #5d2a5e 0%, #7a3a7c 100%);
    padding: 3rem 2rem;
    text-align: center;
}

.page-title-light h1 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

.timeline-intro {
    padding: 3rem 2rem;
    text-align: center;
}

.timeline-intro p {
    font-size: 1.3rem;
    color: #555;
    margin: 0;
}

.timeline-horizontal {
    padding: 4rem 2rem;
    background: white;
}

.timeline-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #5d2a5e 0%, #7a3a7c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 15px rgba(93, 42, 94, 0.4);
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
}

.step-line {
    position: absolute;
    top: 40px;
    right: 50%;
    width: 100%;
    height: 4px;
    background: #ddd;
    z-index: 1;
}

.timeline-step:last-child .step-line {
    display: none;
}

.step-content {
    text-align: center;
}

.step-content h3 {
    font-size: 1.5rem;
    color: #5d2a5e;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.step-content p {
    font-size: 1.1rem;
    color: #666;
    margin: 0.3rem 0;
}

.step-content .year {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
}

/* Dates Section */
.dates-section {
    margin: 4rem 0;
}

.dates-section .section-title {
    font-size: 2.5rem;
    color: #5d2a5e;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.dates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.date-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.date-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(93, 42, 94, 0.2);
    border-color: #5d2a5e;
}

.date-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.date-card h3 {
    font-size: 1.4rem;
    color: #5d2a5e;
    margin-bottom: 1rem;
    font-weight: 600;
}

.date-card .date {
    font-size: 1.2rem;
    color: #7a3a7c;
    font-weight: 600;
    margin: 0;
}

/* Timeline Responsive */
@media (max-width: 768px) {
    .timeline::before {
        right: 40px;
        transform: none;
    }

    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: row;
    }

    .timeline-item .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content {
        margin-right: 0;
        margin-left: 2rem;
        text-align: right;
    }

    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 2rem;
        text-align: right;
    }

    .timeline-marker {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .timeline-title {
        font-size: 1.5rem;
    }

    .dates-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQs Dark Page */
.faqs-page-dark {
    background: linear-gradient(135deg, #1a2332 0%, #2d3e50 100%);
}

.faqs-dark-section {
    padding: 4rem 2rem;
}

.faqs-list-dark {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-dark-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-dark-item:last-child {
    border-bottom: none;
}

.faq-dark-item h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.faq-dark-item p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    margin: 0;
}

.faq-dark-item p strong {
    color: white;
    font-weight: 700;
}

.faq-dark-item a {
    color: #FFD700;
    text-decoration: none;
}

.faq-dark-item a:hover {
    text-decoration: underline;
}

/* Contact CTA Section */
.contact-cta-section {
    margin: 4rem 0 2rem;
}

.contact-cta-box {
    background: linear-gradient(135deg, #7a3a7c 0%, #5d2a5e 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 8px 25px rgba(93, 42, 94, 0.3);
}

.contact-cta-box h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: white;
}

.contact-cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* FAQ Accordion Styles */
.faqs-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: right;
    font-family: 'SF Mada', 'Segoe UI', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #FFD700;
}

.faq-icon {
    font-size: 1.8rem;
    font-weight: 300;
    color: #FFD700;
    transition: transform 0.3s ease;
    margin-right: 1rem;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 2rem 2rem;
}

.faq-answer p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: #FFD700;
}

.faq-answer ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.faq-answer ul li {
    padding: 0.5rem 0;
    padding-right: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.7;
}

.faq-answer ul li::before {
    content: '•';
    color: #FFD700;
    position: absolute;
    right: 0;
}

.faq-answer a {
    color: #FFD700;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.faq-answer a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-question {
        padding: 1.2rem 1.5rem;
        font-size: 1.1rem;
    }

    .faq-answer {
        padding: 0 1.5rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem;
    }
}

/* Contact Page - Beige Background */
body:has(.contact-grid) {
    background: linear-gradient(135deg, #e8e0d5 0%, #f5f1ea 100%);
}

body:has(.contact-grid) .page-content {
    background: transparent;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-form-section,
.contact-info-section {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.section-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

/* Contact Form */
.contact-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.required {
    color: #e74c3c;
}

.optional {
    color: #999;
    font-weight: 400;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'SF Mada', 'Segoe UI', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5d2a5e;
}

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

.submit-button {
    background: linear-gradient(135deg, #5d2a5e 0%, #7a3a7c 100%);
    color: white;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(93, 42, 94, 0.3);
    font-family: 'SF Mada', 'Segoe UI', sans-serif;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(93, 42, 94, 0.4);
}

/* Contact Methods */
.contact-methods {
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f8f8;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: #f8f0f8;
    transform: translateX(-5px);
}

.method-icon {
    font-size: 2.5rem;
    margin-left: 1.5rem;
}

.method-content h3 {
    font-size: 1.3rem;
    color: #5d2a5e;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.method-content p {
    margin: 0.25rem 0;
    color: #666;
    font-size: 1.1rem;
}

.method-content a {
    color: #5d2a5e;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
}

.method-content a:hover {
    text-decoration: underline;
}

/* Social Media */
.social-media {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
}

.social-media h3 {
    font-size: 1.3rem;
    color: #5d2a5e;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #5d2a5e 0%, #7a3a7c 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(93, 42, 94, 0.4);
}

/* Contact Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-section,
    .contact-info-section {
        padding: 2rem;
    }

    .submit-button {
        width: 100%;
    }
}

/* Registration Page - Beige Background */
.registration-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

body:has(.registration-section) {
    background: linear-gradient(135deg, #e8e0d5 0%, #f5f1ea 100%);
}

body:has(.registration-section) .page-content {
    background: transparent;
}

.registration-intro {
    margin-bottom: 3rem;
}

.registration-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.important-note {
    background: #fff3cd;
    border-right: 4px solid #f0ad4e;
    padding: 1.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
}

.important-note a {
    color: #5d2a5e;
    font-weight: 600;
}

.registration-form {
    max-width: 900px;
}

.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
}

.form-section:last-of-type {
    border-bottom: none;
}

.section-heading {
    font-size: 1.8rem;
    color: #5d2a5e;
    margin-bottom: 2rem;
    font-weight: 700;
    border-right: 5px solid #5d2a5e;
    padding-right: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.field-note {
    display: block;
    font-size: 0.9rem;
    color: #999;
    margin-top: 0.5rem;
}

/* Radio Group */
.radio-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.radio-label {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: #f8f8f8;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.radio-label:hover {
    background: #f8f0f8;
    border-color: #5d2a5e;
}

.radio-label input[type="radio"] {
    margin-left: 0.8rem;
    width: 20px;
    height: 20px;
    accent-color: #5d2a5e;
}

.radio-label input[type="radio"]:checked + span {
    color: #5d2a5e;
    font-weight: 600;
}

/* Checkbox Label */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    line-height: 1.8;
}

.checkbox-label input[type="checkbox"] {
    margin-left: 1rem;
    margin-top: 0.3rem;
    width: 20px;
    height: 20px;
    accent-color: #5d2a5e;
    flex-shrink: 0;
}

/* File Upload */
.file-upload-wrapper {
    position: relative;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: #f8f8f8;
    border: 2px dashed #ddd;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 1rem;
}

.file-upload-label:hover {
    background: #f8f0f8;
    border-color: #5d2a5e;
}

.file-icon {
    font-size: 2.5rem;
}

.file-text {
    font-size: 1.1rem;
    color: #666;
}

/* Form Actions */
.form-actions {
    margin-top: 3rem;
    text-align: center;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #999;
}

/* Registration Responsive */
@media (max-width: 768px) {
    .registration-section {
        padding: 2rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .radio-group {
        grid-template-columns: 1fr;
    }

    .section-heading {
        font-size: 1.5rem;
    }
}

/* Coming Soon / Media Center */
.coming-soon {
    text-align: center;
    padding: 4rem 2rem;
}

.coming-soon-icon {
    font-size: 6rem;
    margin-bottom: 2rem;
}

.coming-soon h2 {
    font-size: 3rem;
    color: #5d2a5e;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.coming-soon p {
    font-size: 1.3rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.media-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.media-category {
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.media-category:hover {
    background: #f8f0f8;
    transform: translateY(-5px);
}

.media-category .category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.media-category h3 {
    font-size: 1.4rem;
    color: #5d2a5e;
    margin: 0;
    font-weight: 600;
}

.media-contact-section {
    margin-top: 4rem;
}

.media-contact-box {
    background: linear-gradient(135deg, #5d2a5e 0%, #7a3a7c 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 8px 25px rgba(93, 42, 94, 0.3);
}

.media-contact-box h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: white;
}

.media-contact-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

@media (max-width: 480px) {
    .main-header {
        padding: 1rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ==================== ABOUT PAGE STYLES ==================== */

/* Section Title with Decoration */
.section-title-decorated {
    font-size: 2.5rem;
    color: #5d2a5e;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    position: relative;
}

.section-title-decorated::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #5d2a5e 0%, #7a3a7c 100%);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.section-title-decorated-light {
    font-size: 2.5rem;
    color: white;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    position: relative;
}

.section-title-decorated-light::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: #FFD700;
    margin: 1rem auto 0;
    border-radius: 2px;
}

.section-title-dark {
    font-size: 2.5rem;
    color: #5d2a5e;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
}

.subsection-title {
    font-size: 1.8rem;
    color: #5d2a5e;
    text-align: center;
    margin: 3rem 0 2rem;
    font-weight: 600;
}

.subsection-title-light {
    font-size: 1.8rem;
    color: white;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
}

.subsection-title-dark {
    font-size: 1.8rem;
    color: #333;
    text-align: center;
    margin: 3rem 0 2rem;
    font-weight: 600;
}

/* About Hero Section */
.about-hero-section {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    padding: 4rem 2rem;
}

.about-hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text h1 {
    font-size: 2.2rem;
    color: #5d2a5e;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-text p {
    font-size: 1.15rem;
    line-height: 2;
    color: #444;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* About Categories Dark Section */
.about-categories-dark {
    background: linear-gradient(135deg, #1a2332 0%, #2d3e50 100%);
    padding: 4rem 2rem;
}

.categories-intro {
    text-align: center;
    font-size: 1.3rem;
    color: white;
    margin-bottom: 3rem;
}

.categories-dark-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.category-dark-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.category-dark-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.category-dark-card h3 {
    font-size: 1.4rem;
    color: #FFD700;
    margin-bottom: 1rem;
    font-weight: 600;
}

.category-dark-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin: 0;
}

/* Goals Section Dark */
.goals-section-dark {
    background: linear-gradient(135deg, #2d3e50 0%, #1a2332 100%);
    padding: 4rem 2rem;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.goal-card-dark {
    background: rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.goal-card-dark:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.goal-card-dark .goal-number {
    width: 50px;
    height: 50px;
    background: #5d2a5e;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.goal-card-dark p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0;
}

/* Evaluation Criteria Section - Light */
.criteria-section-light {
    background: linear-gradient(135deg, #f5f1ea 0%, #e8e0d5 100%);
    padding: 4rem 2rem;
}

.criteria-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #555;
    line-height: 1.9;
    max-width: 1000px;
    margin: 0 auto 2rem;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.principle-box {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.principle-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(93, 42, 94, 0.15);
    border-color: #5d2a5e;
}

.principle-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.principle-box h4 {
    font-size: 1.2rem;
    color: #5d2a5e;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.principle-box p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Category Criteria Section */
.category-criteria-section {
    background: linear-gradient(135deg, #1a2332 0%, #2d3e50 100%);
    padding: 4rem 2rem;
}

.category-criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.criteria-card-dark {
    background: rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.criteria-card-dark:hover {
    background: rgba(255, 255, 255, 0.12);
}

.criteria-card-dark h4 {
    font-size: 1.3rem;
    color: #FFD700;
    margin-bottom: 1.2rem;
    font-weight: 600;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.criteria-card-dark ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.criteria-card-dark li {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    padding: 0.6rem 0;
    padding-right: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.criteria-card-dark li::before {
    content: '◆';
    color: #FFD700;
    position: absolute;
    right: 0;
    font-size: 0.7rem;
    top: 0.75rem;
}

/* Evaluation Mechanism Section */
.evaluation-mechanism-section {
    background: linear-gradient(135deg, #f5f1ea 0%, #e8e0d5 100%);
    padding: 4rem 2rem;
}

.mechanism-content {
    max-width: 900px;
    margin: 0 auto;
}

.mechanism-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mechanism-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.mechanism-step:hover {
    transform: translateX(-5px);
    box-shadow: 0 8px 25px rgba(93, 42, 94, 0.15);
}

.mechanism-step .step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #5d2a5e 0%, #7a3a7c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.mechanism-step .step-content h4 {
    font-size: 1.2rem;
    color: #5d2a5e;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.mechanism-step .step-content p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Committee Section Dark */
.committee-section-dark {
    background: linear-gradient(135deg, #5d2a5e 0%, #7a3a7c 100%);
    padding: 4rem 2rem;
}

.committee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.committee-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.committee-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.committee-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.committee-card h4 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.committee-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.direct-nomination {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.nomination-box {
    background: rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.nomination-box h4 {
    font-size: 1.1rem;
    color: #FFD700;
    margin-bottom: 1rem;
    font-weight: 600;
}

.nomination-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nomination-box li {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 0;
    padding-right: 1.5rem;
    position: relative;
}

.nomination-box li::before {
    content: '●';
    color: #FFD700;
    position: absolute;
    right: 0;
    font-size: 0.6rem;
    top: 0.65rem;
}

/* Terms Section Light */
.terms-section-light {
    background: linear-gradient(135deg, #f5f1ea 0%, #e8e0d5 100%);
    padding: 4rem 2rem;
}

.terms-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #555;
    line-height: 1.9;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.concepts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.concept-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.concept-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(93, 42, 94, 0.15);
}

.concept-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.concept-box h4 {
    font-size: 1.2rem;
    color: #5d2a5e;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.concept-box p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* General Conditions Section */
.general-conditions-section {
    background: linear-gradient(135deg, #1a2332 0%, #2d3e50 100%);
    padding: 3rem 2rem;
}

.conditions-list {
    max-width: 800px;
    margin: 0 auto;
}

.condition-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.condition-item:last-child {
    border-bottom: none;
}

.condition-bullet {
    color: #FFD700;
    font-size: 1rem;
}

.condition-item p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Category Conditions Section */
.category-conditions-section {
    background: linear-gradient(135deg, #f5f1ea 0%, #e8e0d5 100%);
    padding: 4rem 2rem;
}

.category-conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.condition-card-dark {
    background: linear-gradient(135deg, #1a2332 0%, #2d3e50 100%);
    padding: 2rem;
    border-radius: 15px;
}

.condition-card-dark h4 {
    font-size: 1.4rem;
    color: #FFD700;
    margin-bottom: 1.5rem;
    font-weight: 600;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.condition-card-dark ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.condition-card-dark li {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    padding: 0.7rem 0;
    padding-right: 1.5rem;
    position: relative;
    line-height: 1.7;
}

.condition-card-dark li::before {
    content: '✓';
    color: #FFD700;
    position: absolute;
    right: 0;
    font-size: 0.9rem;
    top: 0.7rem;
}

/* Rights and Privacy Section */
.rights-privacy-section {
    background: linear-gradient(135deg, #e8e0d5 0%, #f5f1ea 100%);
    padding: 4rem 2rem;
}

.rights-privacy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.rights-box,
.privacy-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.rights-box h4,
.privacy-box h4 {
    font-size: 1.4rem;
    color: #5d2a5e;
    margin-bottom: 1rem;
    font-weight: 600;
}

.rights-box p,
.privacy-box p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1rem;
}

.rights-box ul,
.privacy-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rights-box li,
.privacy-box li {
    font-size: 1rem;
    color: #666;
    padding: 0.5rem 0;
    padding-right: 1.5rem;
    position: relative;
}

.rights-box li::before,
.privacy-box li::before {
    content: '●';
    color: #5d2a5e;
    position: absolute;
    right: 0;
    font-size: 0.6rem;
    top: 0.65rem;
}

/* Provisions Section Dark */
.provisions-section-dark {
    background: linear-gradient(135deg, #2d3e50 0%, #1a2332 100%);
    padding: 3rem 2rem;
}

.provisions-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.provision-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.provision-item:hover {
    background: rgba(255, 255, 255, 0.12);
}

.provision-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.provision-item p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

/* About Page Responsive */
@media (max-width: 1024px) {
    .about-text {
        text-align: center;
    }

    .about-text p {
        text-align: center;
    }

    .goals-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .principles-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .committee-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .direct-nomination {
        grid-template-columns: 1fr;
    }

    .concepts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rights-privacy-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-title-decorated,
    .section-title-decorated-light,
    .section-title-dark {
        font-size: 2rem;
    }

    .subsection-title,
    .subsection-title-light,
    .subsection-title-dark {
        font-size: 1.5rem;
    }

    .goals-grid {
        grid-template-columns: 1fr;
    }

    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .committee-grid {
        grid-template-columns: 1fr;
    }

    .concepts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-criteria-grid {
        grid-template-columns: 1fr;
    }

    .category-conditions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .principles-grid {
        grid-template-columns: 1fr;
    }

    .concepts-grid {
        grid-template-columns: 1fr;
    }

    .provision-item {
        flex-direction: column;
        text-align: center;
    }
}

/* ==================== CATEGORIES PAGE NEW STYLES ==================== */

.categories-page-title {
    background: linear-gradient(135deg, #f5f1ea 0%, #e8e0d5 100%);
    padding: 3rem 2rem;
    text-align: center;
}

.categories-page-title h1 {
    font-size: 2.5rem;
    color: #5d2a5e;
    font-weight: 700;
    margin: 0;
}

.categories-page-new {
    background: #1a2332;
}

.category-block {
    background: linear-gradient(135deg, #1a2332 0%, #2d3e50 100%);
    padding: 3rem 2rem 4rem;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.category-block:nth-child(even) {
    background: linear-gradient(135deg, #2d3e50 0%, #1a2332 100%);
}

.category-label {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.category-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.5rem;
}

.category-icon {
    margin-bottom: 1rem;
}

.category-icon svg {
    filter: drop-shadow(0 4px 10px rgba(255, 215, 0, 0.3));
}

.category-name {
    font-size: 2rem;
    color: #FFD700;
    font-weight: 700;
    text-align: center;
    margin: 0;
}

.category-info-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.info-icon-small {
    color: #FFD700;
    margin-bottom: 0.8rem;
}

.info-icon-small svg {
    stroke: #FFD700;
}

.info-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

.info-value {
    font-size: 1.1rem;
    color: white;
    font-weight: 600;
}

.info-value.gold {
    color: #FFD700;
}

.category-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Category with feather image */
.category-with-image {
    position: relative;
    overflow: hidden;
}

.category-feather {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.category-feather img {
    max-width: 200px;
    height: auto;
    opacity: 0.9;
    filter: drop-shadow(0 -10px 30px rgba(218, 165, 32, 0.3));
}

/* Categories Page Responsive */
@media (max-width: 768px) {
    .categories-page-title h1 {
        font-size: 2rem;
    }

    .category-block {
        padding: 4rem 1.5rem 3rem;
    }

    .category-label {
        position: relative;
        top: auto;
        left: auto;
        display: inline-block;
        margin-bottom: 1.5rem;
    }

    .category-name {
        font-size: 1.6rem;
    }

    .category-info-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .info-item {
        padding: 1rem;
    }

    .category-description {
        font-size: 1rem;
    }

    .category-feather img {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .category-name {
        font-size: 1.4rem;
    }

    .info-value {
        font-size: 1rem;
    }
}

/* ==================== CATEGORIES PAGE ENHANCED STYLES ==================== */

/* Category Icon Image */
.category-icon-img {
    width: 80px;
    height: auto;
    filter: drop-shadow(0 4px 15px rgba(255, 215, 0, 0.4));
}

/* Trophy SVG Icon */
.trophy-svg {
    filter: drop-shadow(0 4px 15px rgba(255, 215, 0, 0.5));
}

/* Feather Decoration for Category 4 */
.category-with-feather {
    position: relative;
    overflow: visible;
    padding-bottom: 6rem;
}

.feather-decoration {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.feather-decoration img {
    width: 280px;
    height: auto;
    filter: drop-shadow(0 10px 40px rgba(218, 165, 32, 0.5));
    animation: featherFloat 4s ease-in-out infinite;
}

@keyframes featherFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

/* CTA Section for Categories Page */
.cta-section-categories {
    background: linear-gradient(135deg, #1a2332 0%, #2d3e50 100%);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
}

.cta-section-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

.cta-button-gold {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a2332;
    padding: 1.2rem 4rem;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    border: 2px solid transparent;
}

.cta-button-gold:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 35px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #FFC000 0%, #FF8C00 100%);
}

/* Enhanced Category Block Styles */
.category-block {
    background: linear-gradient(180deg, #1a2332 0%, #243447 50%, #1a2332 100%);
    padding: 4rem 2rem 5rem;
    position: relative;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.category-block:nth-child(even) {
    background: linear-gradient(180deg, #243447 0%, #1a2332 50%, #243447 100%);
}

/* Category Label Enhancement */
.category-label {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    padding: 0.6rem 1.8rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px);
}

/* Category Header Enhancement */
.category-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
    padding-top: 1rem;
}

.category-icon {
    margin-bottom: 1.5rem;
}

.category-name {
    font-size: 2.2rem;
    color: #FFD700;
    font-weight: 700;
    text-align: center;
    margin: 0;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

/* Info Row Enhancement */
.category-info-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto 2.5rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.2);
    transform: translateY(-3px);
}

.info-icon-small {
    color: #FFD700;
    margin-bottom: 1rem;
}

.info-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 1.15rem;
    color: white;
    font-weight: 600;
}

.info-value.gold {
    color: #FFD700;
    font-size: 1.25rem;
}

/* Category Description Enhancement */
.category-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Categories Page Title Enhancement */
.categories-page-title {
    background: linear-gradient(135deg, #f5f1ea 0%, #e8e0d5 100%);
    padding: 3.5rem 2rem;
    text-align: center;
    position: relative;
}

.categories-page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #5d2a5e, transparent);
}

.categories-page-title h1 {
    font-size: 2.8rem;
    color: #5d2a5e;
    font-weight: 700;
    margin: 0;
}

/* Categories Page Responsive Enhanced */
@media (max-width: 768px) {
    .categories-page-title h1 {
        font-size: 2rem;
    }

    .category-block {
        padding: 5rem 1.5rem 4rem;
    }

    .category-label {
        position: relative;
        top: auto;
        left: auto;
        display: inline-block;
        margin-bottom: 2rem;
    }

    .category-name {
        font-size: 1.8rem;
    }

    .category-info-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .info-item {
        padding: 1.5rem;
    }

    .category-description {
        font-size: 1rem;
    }

    .feather-decoration img {
        width: 200px;
    }

    .cta-button-gold {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
    }

    .category-icon-img {
        width: 60px;
    }
}

@media (max-width: 480px) {
    .category-name {
        font-size: 1.5rem;
    }

    .info-value {
        font-size: 1rem;
    }

    .feather-decoration img {
        width: 150px;
    }

    .category-icon-img {
        width: 50px;
    }
}
