.ce-headline-left{
    text-align: left !important;
}

.feature-area{
    border-bottom: none;
}

.row.custom-alignleft{
    text-align: left;
}

.row.custom-alignleft .img-area{
    text-align: left;
}

/* Popup Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup-overlay.show{
    display: flex !important;
}

.popup-overlay.show {
    opacity: 1;
}

/* Popup Vindue */
.popup-content {
    background: #ffffff;
    width: 90%;
    max-width: 500px;
    padding: 40px;
    border-radius: 4px;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    font-family: "Open Sans", sans-serif; /* Matcher sitets font */
    color: #333333;
}

.popup-overlay.show .popup-content {
    transform: translateY(0);
}

/* Luk-knap */
.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    transition: color 0.2s ease;
    line-height: 1;
}

.popup-close:hover {
    color: #002855; /* Aalborg CSP Blå */
}

/* Indhold styling */
.popup-inner {
    text-align: left;
}

.popup-tag {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #002855;
    font-weight: 700;
    margin-bottom: 10px;
}

.popup-inner h2 {
    color: #002855; /* Aalborg CSP Blå */
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 600;
}

.popup-inner p {
    font-size: 14px;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 25px;
}

/* CTA Knap */
.popup-btn {
    display: inline-block;
    background-color: #002855;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 2px;
    transition: background-color 0.2s ease;
}

.popup-btn:hover {
    background-color: #001f42;
}