.elementor-15433 .elementor-element.elementor-element-323064d{--display:flex;}.elementor-widget-button .elementor-button{background-color:var( --e-global-color-accent );font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );line-height:var( --e-global-typography-accent-line-height );}.elementor-15433 .elementor-element.elementor-element-308c036 .elementor-button{background-color:#0C2C55;fill:#FFFFFF;color:#FFFFFF;}.elementor-15433 .elementor-element.elementor-element-308c036 .elementor-button:hover, .elementor-15433 .elementor-element.elementor-element-308c036 .elementor-button:focus{background-color:#089100;}.elementor-15433 .elementor-element.elementor-element-dba3b2e{--spacer-size:50px;}body.elementor-page-15433:not(.elementor-motion-effects-element-type-background), body.elementor-page-15433 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#DFF5FF;}:root{--page-title-display:none;}@media(max-width:1024px){.elementor-widget-button .elementor-button{line-height:var( --e-global-typography-accent-line-height );}}@media(max-width:767px){.elementor-widget-button .elementor-button{line-height:var( --e-global-typography-accent-line-height );}}/* Start custom CSS */body {
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    line-height: 1.6;
}



.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;   /* Vertical center */
    align-items: center;       /* Horizontal center */
    text-align: center;

    padding: 40px 20px;
    background: linear-gradient(135deg, #0C2C55, #0C2C55);
    color: white;
    border-radius: 12px;
    margin-bottom: 30px;
    min-height: 150px; /* Optional: gives better vertical centering */
}


.hero h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 18px;
    opacity: 0.9;
}

.info {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.deadline {
    margin-top: 15px;
    color: #b91c1c;
    font-weight: bold;
}

.fees h2,
.account h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #0C2C55;
}

.fee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.card h3 {
    margin-bottom: 15px;
    color: #0C2C55;
}

.card ul {
    list-style: none;
}

.card li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.card li:last-child {
    border-bottom: none;
}

.account-box {
    background: #f0fdfa;
    padding: 25px;
    border-left: 5px solid #0C2C55;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.account-box p {
    margin-bottom: 10px;
}/* End custom CSS */