.guidelines-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.guidelines-hero {
    text-align: center;
    padding: 2rem 0;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--beige-white) 0%, #f0e6d2 100%);
    border-radius: 12px;
    margin-top: 1rem;
}

.hero-content h1 {
    font-family: 'Dancing Script', cursive;
    color: var(--dark-blue);
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-family: 'Merriweather', serif;
    color: var(--dark-blue);
    font-size: 1.2rem;
    font-style: italic;
    margin: 0;
}

.guidelines-content {
    margin-bottom: 2rem;
}

.guideline-section {
    margin-bottom: 3rem;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-left: 4px solid var(--secondary-color);
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--beige-white);
}

.section-icon {
    font-size: 2rem;
    margin-right: 1rem;
}

.section-header h2 {
    font-family: 'Merriweather', serif;
    color: var(--dark-blue);
    font-size: 1.8rem;
    margin: 0;
}

.subsection {
    margin-bottom: 1.5rem;
}

.subsection h3 {
    font-family: 'Merriweather', serif;
    color: var(--dark-blue);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.subsection p {
    font-family: 'Lora', serif;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.subsection ul {
    font-family: 'Lora', serif;
    line-height: 1.6;
    color: #333;
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.subsection li {
    margin-bottom: 0.5rem;
}

.content-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.content-type {
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid;
}

.content-type.allowed {
    background: #f0f9ff;
    border-color: #22c55e;
}

.content-type.restricted {
    background: #fef2f2;
    border-color: #ef4444;
}

.content-type h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.content-type ul {
    margin: 0;
    padding-left: 1.2rem;
}

.highlight {
    background: #fff3cd;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
    font-weight: 500;
}

.contact-box {
    background: var(--beige-white);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.contact-box p {
    margin-bottom: 1rem;
}

.contact-box a {
    color: var(--dark-blue);
    text-decoration: none;
    font-weight: 500;
}

.contact-box a:hover {
    text-decoration: underline;
}

.contact-box ul {
    margin: 0.5rem 0 0 0;
}

.guidelines-footer {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #0056b3 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 2rem;
}

.footer-content h3 {
    font-family: 'Merriweather', serif;
    color: white;
    margin-bottom: 1rem;
}

.footer-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

.footer-content a {
    color: white;
    text-decoration: none;
}

.footer-content a:hover {
    text-decoration: underline;
}

.back-button {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.back-button:hover {
    background: #45a049;
    color: white;
    text-decoration: none;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .guidelines-hero {
        padding: 1.5rem 1rem;
        margin-top: 0.5rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .guideline-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .section-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .content-types {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .content-type {
        padding: 1rem;
    }
    
    .guidelines-footer {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .guidelines-container {
        padding: 0 0.5rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .guideline-section {
        padding: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.3rem;
    }
    
    .subsection h3 {
        font-size: 1.1rem;
    }
}
