.guidelines-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.guideline-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    width: 100%;
}

.guideline-card:hover {
    transform: translateY(-5px);
}

.guideline-card h2 {
    color: var(--orange);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.guideline-card h2 i {
    color: var(--terracotta);
}

.guideline-card h3 {
    color: var(--cinnamon);
    margin: 1.5rem 0 0.5rem;
    font-size: 1.2rem;
}

.time-limit, .poster-size {
    background: var(--saffron);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    margin: 1rem 0;
    font-weight: 500;
}

.guideline-card ul {
    list-style-position: inside;
    padding-left: 1rem;
}

.guideline-card ul ul {
    padding-left: 2rem;
    margin: 0.5rem 0;
}

.guideline-card li {
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

@media screen and (max-width: 768px) {
    .guideline-card {
        padding: 1.5rem;
    }

    .guideline-card h2 {
        font-size: 1.3rem;
    }
}

.important-guidelines-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    list-style: none;
}

.important-guidelines-list li::before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    font-weight: bold;
    color: var(--orange);
}

.important-guidelines-list {
    counter-reset: item;
    padding-left: 0;
}

.important-guidelines-list li {
    counter-increment: item;
}

.bank-details-section {
    background: #f8f8f8;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.bank-details-section h3 {
    color: var(--orange);
    margin-bottom: 1.5rem;
}

.payment-method {
    margin-bottom: 1.5rem;
}

.payment-method h4 {
    color: var(--cinnamon);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bank-info {
    list-style: none;
    padding-left: 0;
}

.bank-info li {
    margin-bottom: 0.5rem;
}

.bank-info li strong {
    color: var(--terracotta);
    margin-right: 0.5rem;
} 