
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: opacity 0.3s ease;
    overflow-y: auto;
    z-index: 999999;
}

.modal-overlay.hidden {
    display: none;
    opacity: 0;
}

.modal-content {
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 28rem;
    width: 100%;
    overflow: hidden;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.modal-content.scale-down {
    transform: scale(0.95);
}

/* Modal Header */
.modal-header {
    background: linear-gradient(to right, #006633, #008844);
    padding: 1rem;
    position: relative;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    line-height: 0.4;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-container {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
}

.logo-container img {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
    border-radius: 50%;
}

.header-text h2 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
}

.header-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.close-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.375rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}

.close-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
}

.close-btn svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* Modal Body */
.modal-body {
    padding: 1.25rem;
}

.seal-container {
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.seal-image-wrapper {
    display: flex;
    justify-content: center;
}

.seal-image {
    width: 100%;
    max-width: 56rem;
    height: auto;
    border-radius: 1rem;
    max-height: 90vh;
    object-fit: contain;
}

/* Info Section */
.info-section {
    margin-top: 1rem;
    background: #dcfce7;
    border-left: 4px solid #16a34a;
    border-radius: 0 0.5rem 0.5rem 0;
    padding: 0.75rem;
}

.info-content {
    display: flex;
    align-items: flex-start;
}

.info-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #16a34a;
    margin-top: 0.125rem;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.info-text p {
    font-size: 0.75rem;
    color: #374151;
}

.info-text p.title {
    font-weight: 500;
}

.info-text p.description {
    color: #4b5563;
    margin-top: 0.25rem;
}

/* Footer Buttons */
.modal-footer {
    margin-top: 1rem;
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
}

