.ethia-popup-overlay {
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.ethia-popup-content {
    background: #F7F1E5;
    border-radius: 8px;
    position: relative;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    text-align: center;
}

.ethia-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 30px;
    line-height: 1;
    color: #151A15;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.ethia-popup-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ethia-popup-text-above h2 {
    font-family: "ivypresto-display", serif;
    font-size: 32px;
    color: #151A15;
    margin: 0;
    line-height: 1.2;
}

.ethia-popup-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.ethia-popup-text-below p {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #151A15;
    margin: 0;
}

.ethia-popup-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 3.5rem;
    color: #fff;
    background-color: #303c30;
    border: 1px solid #303c30;
    border-radius: 5rem;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
    text-decoration: none;
    transition: all 0.3s ease-out;
}

.ethia-popup-button:hover {
    background-color: transparent;
    color: #303c30;
}

@media (max-width: 768px) {
    .ethia-popup-content {
        padding: 30px 20px;
    }
    
    .ethia-popup-text-above h2 {
        font-size: 24px;
    }
    
    .ethia-popup-text-below p {
        font-size: 16px;
    }
}
