.new-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    
}
.landing-section {
    background: linear-gradient(90deg, #000428 0%, #004e92 100%)!important;
    color: white;
    padding: 4rem 0;

}

.alt-landing-section {
    background: linear-gradient(90deg, #001f5b 0%, #0076a8 100%)!important;
    color: white;
    padding: 4rem 0;
}

.landing-section {
    padding: 4rem 0;
}

.landing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch; 
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-2px);  
    box-shadow: 0 6px 36px rgba(0, 0, 0, 0.2);  
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-image {
    width: 100%; 
    max-width: 888px;
    height: auto; 
    margin-bottom: 1rem; 
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-description {
    font-size: 0.875rem;
    opacity: 0.9;
}

h1 {
    font-weight: 900;
    font-size: 2.5em!important;
}

h1 {
    font-weight: 900;
    font-size: x-large;
}

@media (max-width: 663px) {
    .landing-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 0.8rem;
    }
    .feature-card {
        padding: 0.5rem;
        padding-top: 2rem;
    }
}

.dialog {
    display: none; 
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    justify-content: center;
    align-items: center;
}

.dialog-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    width: 50%;
}

button {
    margin: 10px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#confirm-button {
    background-color: #f44336; 
    color: white;
}

#confirm-button:hover {
    background-color: #d32f2f; 
}


#cancel-button:hover {
    background-color: #e0e0e0; 
}
