/* Booking Section Styles */
.booking-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="2" fill="%23d4af37" opacity="0.1"/><circle cx="75" cy="75" r="1.5" fill="%23d4af37" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="%23d4af37" opacity="0.1"/><circle cx="10" cy="60" r="1.5" fill="%23d4af37" opacity="0.1"/><circle cx="90" cy="30" r="1" fill="%23d4af37" opacity="0.1"/></svg>') repeat;
    pointer-events: none;
}

.booking-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.booking-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.booking-header .highlight {
    color: #d4af37;
    position: relative;
}

.booking-header .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.booking-header .separator {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f1c40f);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.booking-header .lead-text {
    font-size: 1.2rem;
    color: #5a6c7d;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Booking Cards */
.booking-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.booking-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.booking-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f1c40f);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.booking-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.booking-card:hover::before {
    transform: scaleX(1);
}

.booking-card.featured {
    position: relative;
    transform: scale(1.05);
}

.booking-card.featured::before {
    transform: scaleX(1);
}

.featured-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: linear-gradient(135deg, #d4af37, #f1c40f);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0 0 15px 15px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37, #f1c40f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.card-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.card-subtitle {
    color: #5a6c7d;
    font-size: 1rem;
    margin-bottom: 0;
}

.card-content {
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f3f4;
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #2c3e50;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li i {
    color: #d4af37;
    margin-right: 1rem;
    font-size: 1.1rem;
}

/* Event Details */
.event-details {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #2c3e50;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-item i {
    color: #d4af37;
    margin-right: 1rem;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Card Footer */
.card-footer {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* When there's only one button, make it full width but max 300px */
.card-footer .booking-btn:only-child {
    max-width: 300px;
    width: 100%;
}

.booking-btn, .info-btn {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-btn {
    background: linear-gradient(135deg, #d4af37, #f1c40f);
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.booking-btn:hover {
    background: linear-gradient(135deg, #c19025, #e6b800);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.booking-btn.secondary {
    background: linear-gradient(135deg, #6c757d, #868e96);
}

.booking-btn.secondary:hover {
    background: linear-gradient(135deg, #5a6268, #6f7680);
}

.info-btn {
    background: transparent;
    color: #2c3e50;
}

.info-btn:hover {
    background: #f8f9fa;
    color: #d4af37;
}

/* Booking Notice */
.booking-notice {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.notice-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.notice-content i {
    font-size: 2rem;
    color: #856404;
    flex-shrink: 0;
}

.notice-text h4 {
    color: #856404;
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.notice-text p {
    color: #856404;
    margin: 0;
    font-size: 1rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: white;
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { 
        transform: translateY(-50px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    background: linear-gradient(135deg, #1a2332, #2c3e50);
    color: #ffffff;
    padding: 2rem;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid #d4af37;
}

.modal-header h2 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.modal-header i {
    color: #f1c40f;
    font-size: 1.2em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.close {
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.close:hover {
    color: #f1c40f;
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.close:hover {
    color: white;
    background: rgba(255, 255, 255, 0.2);
}

.modal-body {
    padding: 2.5rem;
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.modal-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.modal-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.modal-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.modal-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.service-includes h4,
.pricing-info h4,
.booking-timeline h4,
.seating-options h4,
.group-booking h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-weight: 600;
}

.service-includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-includes li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    color: #2c3e50;
}

.service-includes li i {
    color: #d4af37;
    margin-right: 1rem;
    font-size: 1.1rem;
}

.pricing-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.price-breakdown .price-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.price-breakdown .price-item:last-child {
    border-bottom: none;
}

.price-total {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0 0.5rem;
    border-top: 2px solid #d4af37;
    margin-top: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: #2c3e50;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
}

.timeline-date {
    font-weight: 600;
    color: #d4af37;
    min-width: 60px;
    margin-right: 1rem;
}

.seating-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.seating-option {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.seating-option:hover {
.seating-option:hover {
    background: #fff;
}
.seating-option.recommended {
    border-color: #d4af37;
.seating-option.recommended {
    background: linear-gradient(135deg, #fff8dc, #f8f9fa);
}seating-option h5 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.seating-option p {
    color: #5a6c7d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.seating-price {
    font-weight: 600;
    color: #d4af37;
    font-size: 1.1rem;
}

.group-booking {
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
    padding: 1.5rem;
.group-booking {
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
}   margin: 0;
    color: #155724;
    font-weight: 500;
}

/* Event Schedule */
.seating-option p {
    color: #5a6c7d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.group-booking {
    color: #5a6c7d;
    font-size: 1.1rem;
    margin: 0;
}

.venue-info i {
    color: #d4af37;
    margin-right: 0.5rem;
}

.schedule-timeline {
    margin: 2rem 0;
}

.schedule-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #d4af37;
}

.schedule-time {
    font-weight: 600;
    color: #d4af37;
    min-width: 80px;
    margin-right: 2rem;
    font-size: 1.1rem;
}

.schedule-content h4 {
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.schedule-content p {
    color: #5a6c7d;
    margin: 0;
    line-height: 1.6;
}

.event-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.info-section {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
.info-section {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}   margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-section h4 i {
    color: #d4af37;
}

.info-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-section li {
    padding: 0.5rem 0;
    color: #5a6c7d;
    border-bottom: 1px solid #f1f3f4;
}

.info-section li:last-child {
    border-bottom: none;
}

.modal-footer {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 0 0 20px 20px;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.modal-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-btn.primary {
    background: linear-gradient(135deg, #d4af37, #f1c40f);
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.modal-btn.primary:hover {
    background: linear-gradient(135deg, #c19025, #e6b800);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.modal-btn.secondary {
    background: #6c757d;
    color: white;
}

.modal-btn.secondary:hover {
    background: #5a6268;
}

/* Induction Notice Modal Styles */
.induction-notice {
    max-width: 800px;
    margin: 0 auto;
}

.notice-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #d4af37;
}

.notice-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.notice-subtitle {
    font-size: 1.2rem;
    color: #d4af37;
    font-weight: 600;
    margin: 0;
}

.notice-content-section {
    margin-bottom: 2rem;
}

.lead-notice {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #5a6c7d;
    text-align: center;
    font-style: italic;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #d4af37;
}

.ceremony-details,
.agenda-section,
.recognition-section,
.awards-section,
.nomination-info,
.contact-section {
    margin-bottom: 2.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.ceremony-details h4,
.agenda-section h4,
.recognition-section h4,
.awards-section h4,
.nomination-info h4,
.contact-section h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ceremony-details h4 i,
.agenda-section h4 i,
.recognition-section h4 i,
.awards-section h4 i,
.nomination-info h4 i,
.contact-section h4 i {
    color: #d4af37;
}

.detail-grid {
    display: grid;
    gap: 1rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #d4af37;
}

.detail-label {
    font-weight: 600;
    color: #2c3e50;
}

.detail-value {
    color: #5a6c7d;
    font-weight: 500;
}

.agenda-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.agenda-list li {
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.agenda-list li:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, #fff, #f8f9fa);
}

.agenda-list li i {
    color: #d4af37;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.recognition-grid,
.awards-grid,
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.recognition-item,
.award-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.recognition-item:hover,
.award-item:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.recognition-item i {
    font-size: 2rem;
    color: #d4af37;
    width: 40px;
    text-align: center;
}

.recognition-item h5,
.award-item h5 {
    margin: 0 0 0.25rem 0;
    color: #2c3e50;
    font-size: 1.1rem;
}

.recognition-item p,
.award-item p {
    margin: 0;
    color: #5a6c7d;
    font-size: 0.9rem;
}

.award-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.award-icon.gold {
    background: linear-gradient(135deg, #d4af37, #f1c40f);
}

.award-icon.royal {
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
}

.process-item {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.process-item h5 {
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.process-item p {
    color: #5a6c7d;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-details {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
}

.contact-details p {
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

.contact-details strong {
    color: #d4af37;
}

.confirmation-notice {
    margin-top: 2rem;
}

.notice-box {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 1px solid #d4af37;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.notice-box i {
    color: #856404;
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.notice-box h5 {
    color: #856404;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.notice-box p {
    color: #856404;
    margin: 0;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .booking-cards {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 1.5rem;
    }
    
    .booking-card.featured {
        transform: scale(1.02);
    }
}

@media (max-width: 992px) {
    .booking-section {
        padding: 4rem 0;
    }
    
    .booking-header h2 {
        font-size: 2.5rem;
    }
    
    .booking-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .booking-card.featured {
        transform: none;
    }
    
    .modal-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .modal-image {
        order: -1;
    }
    
    .seating-grid {
        grid-template-columns: 1fr;
    }
    
    .event-info-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .booking-section {
        padding: 3rem 0;
    }
    
    .booking-header h2 {
        font-size: 2rem;
    }
    
    .booking-header .lead-text {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .booking-card {
        padding: 2rem 1.5rem;
    }
    
    .card-footer {
        flex-direction: column;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 85vh;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
      .modal-header {
        padding: 1.5rem;
        background: linear-gradient(135deg, #1a2332, #2c3e50);
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
        color: #ffffff;
        font-weight: 700;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }
    
    .modal-footer {
        padding: 1.5rem;
        flex-direction: column;
    }
    
    .schedule-item {
        flex-direction: column;
        padding: 1rem;
    }
    
    .schedule-time {
        margin-bottom: 0.5rem;
        margin-right: 0;
    }
    
    .notice-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .booking-header h2 {
        font-size: 1.8rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .card-icon i {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .modal-content {
        width: 98%;
        margin: 1% auto;
        border-radius: 15px;
    }
      .modal-header {
        border-radius: 15px 15px 0 0;
        background: linear-gradient(135deg, #1a2332, #2c3e50);
        padding: 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
        color: #ffffff;
        font-weight: 700;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }
    
    .modal-footer {
        border-radius: 0 0 15px 15px;
    }
}

/* Responsive Design for Induction Notice */
@media (max-width: 768px) {
    .recognition-grid,
    .awards-grid,
    .process-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .notice-header h3 {
        font-size: 1.6rem;
    }
    
    .notice-subtitle {
        font-size: 1rem;
    }
    
    .detail-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .detail-label,
    .detail-value {
        text-align: left;
    }
    
    .award-item,
    .recognition-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
}
