.ad-a07ab964-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3.5rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    align-items: flex-start;
    margin: 2rem 0;
}

@media (max-width: 991px) {
    .ad-a07ab964-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Accordion side style */
.ad-a07ab964-accordion-panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ad-a07ab964-acc-item {
    border-radius: 1.2rem;
    overflow: hidden;
    background-color: transparent;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.ad-a07ab964-acc-header {
    background-color: #e8e8f4;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease;
}

.ad-a07ab964-acc-item.is-open .ad-a07ab964-acc-header {
    background-color: #e8e8f4;
}

.ad-a07ab964-acc-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a154b;
}

.ad-a07ab964-acc-icon {
    position: relative;
    width: 20px;
    height: 20px;
}

.ad-a07ab964-acc-icon::before,
.ad-a07ab964-acc-icon::after {
    content: '';
    position: absolute;
    background-color: #1a154b;
    transition: transform 0.3s ease;
}

/* Horizontal line */
.ad-a07ab964-acc-icon::before {
    top: 9px;
    left: 2px;
    width: 16px;
    height: 2px;
}

/* Vertical line */
.ad-a07ab964-acc-icon::after {
    top: 2px;
    left: 9px;
    width: 2px;
    height: 16px;
}

.ad-a07ab964-acc-item.is-open .ad-a07ab964-acc-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.ad-a07ab964-acc-body {
    background-color: transparent;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.ad-a07ab964-acc-content {
    padding: 1.5rem 2.5rem;
    color: #1a154b;
    font-size: 1.05rem;
    line-height: 1.8;
}

.ad-a07ab964-acc-content ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.ad-a07ab964-acc-content ul li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.75rem;
}

.ad-a07ab964-acc-content ul li::before {
    content: "■";
    position: absolute;
    left: 0;
    font-size: 0.7rem;
    top: -1px;
    color: #1a154b;
}

/* Right download panel design */
.ad-a07ab964-card-panel {
    border: 2px solid #1a154b;
    border-radius: 2rem;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    background-color: #ffffff;
    box-sizing: border-box;
    height: 100%;
    min-height: 280px;
}

.ad-a07ab964-icon-container {
    color: #1a154b;
}

.ad-a07ab964-card-desc {
    font-size: 1.25rem;
    line-height: 1.5;
    color: #1a154b;
    margin: 0;
    font-weight: 500;
}

.ad-a07ab964-trigger-btn {
    border: 2px solid #1a154b;
    background-color: transparent;
    color: #1a154b;
    border-radius: 50rem;
    padding: 0.9rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ad-a07ab964-trigger-btn:hover {
    background-color: #1a154b;
    color: #ffffff;
}

.ad-a07ab964-trigger-btn .arrow-down {
    font-size: 1.2rem;
}

/* Modal Popup Overlays styles */
.ad-a07ab964-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 21, 75, 0.45);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    z-index: 99999;
    transition: opacity 0.3s ease;
}

.ad-a07ab964-modal-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
}

.ad-a07ab964-modal {
    background-color: #ffffff;
    border-radius: 1.5rem;
    width: 90%;
    max-width: 500px;
    padding: 2.5rem;
    box-sizing: border-box;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.ad-a07ab964-modal-overlay.is-active .ad-a07ab964-modal {
    transform: translateY(0);
}

.ad-a07ab964-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    background: none;
    border: none;
    color: #1a154b;
    cursor: pointer;
    outline: none;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.ad-a07ab964-modal-close:hover {
    opacity: 1;
}

.ad-a07ab964-modal-header {
    margin-bottom: 2rem;
}

.ad-a07ab964-modal-header h3 {
    margin: 0 0 0.5rem 0;
    color: #1a154b;
    font-size: 1.5rem;
    font-weight: 700;
}

.ad-a07ab964-modal-header p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Form Styles */
.ad-a07ab964-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.ad-a07ab964-form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ad-a07ab964-form-field label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a154b;
}

.ad-a07ab964-form-field input,
.ad-a07ab964-form-field textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #ccc;
    border-radius: 0.6rem;
    font-size: 1rem;
    color: #333;
    outline: none;
    transition: border-color 0.2s ease;
}

.ad-a07ab964-form-field input:focus,
.ad-a07ab964-form-field textarea:focus {
    border-color: #1a154b;
}

.ad-a07ab964-submit-btn {
    background-color: #1a154b;
    color: #ffffff;
    border: none;
    border-radius: 0.6rem;
    padding: 0.9rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.ad-a07ab964-submit-btn:hover {
    background-color: #27216a;
}

/* Form Message Feedback */
.ad-a07ab964-form-msg {
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    display: none;
}

.ad-a07ab964-form-msg.success {
    display: block;
    color: #2e7d32;
}

.ad-a07ab964-form-msg.error {
    display: block;
    color: #c62828;
}

/* Loader style */
.ad-a07ab964-submit-btn.loading .btn-text {
    visibility: hidden;
}

.ad-a07ab964-submit-btn.loading .btn-loader {
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: ad_a07ab964_spin 0.8s infinite linear;
}

@keyframes ad_a07ab964_spin {
    to { transform: rotate(360deg); }
}
