
.blur-box {
    position: relative;
    margin: 5% auto; 
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(23, 107, 135, 0.3);
    border-radius: 20px;
    width: 60%;
    max-width: 800px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    /* animation: fadeIn 1s ease-in-out; */
}


@media (max-width: 768px) {
    .blur-box {
        width: 80%;
        padding: 15px;
    }
}


@media (max-width: 480px) {
    .blur-box {
        width: 90%;
        padding: 10px;
        border-radius: 15px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.header {
    text-align: center;
    padding: 20px;
    font-size: 2.5em;
    font-weight: bold;
    color: #A8E6C3;
    background: #5CBC74;
    border-bottom: 1px solid #B4D4FF;
    font-family: yekanregular;
    letter-spacing: 2px;
}

.content {
    display: flex;
    flex: 1;
}

.left-section {
    flex: 1;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.7);
    border-right: 1px solid #B4D4FF;
}

.right-section {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: right;
    background: rgba(255, 255, 255, 0.5);
}

.contact-info {
    font-size: 1.3em;
    color: #176B87;
    line-height: 2;
}

.contact-info strong {
    color: #176B87;
}

iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer {
    text-align: center;
    padding: 10px;
    font-size: 0.9em;
    background: #B4D4FF;
    border-top: 1px solid #EEF5FF;
    color: #176B87;
}

