 body
    {
        margin: 0;
        font-family: Roboto, sans-serif; 
        background-color: #f8f9fa;
        overflow-x: hidden;
    }
    
    .main-container
    {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
   .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999; 
}

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000; 
    width: 700px; 
    text-align: center;
}
    
    .accordion
    {
        margin: 0 auto;
        max-width: 1000px;
        padding: 0;
       
    }
    
    .accordion-item
    {
        border-top: 1px solid #ddd;
        margin: 0;
        padding: 5px;
    }
    
    .accordion-header
    {
        display: flex;
        align-items: center;
        padding: 10px 15px;
        /* Adjust */
        cursor: pointer;
        background-color: #f9f9f9;
        border: none;
        font-size: 1.1em;
        position: relative;
        transition: background-color 0.3s, border-radius 0.3s, box-shadow 0.3s;
        border-radius: 5px;
        /* Adjust */
        margin: 0;
        /* Ensure no margin */
    }
    
    .accordion-header:hover
    {
        background-color: #e9ecef;
        border-radius: 15px;
        /* Adjust */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
       
    }
    
    .cta-button
    {
        margin-left: auto;
        padding: 5px 10px;
        background-color:#065F84; /*#007BFF;*/
        color: white;
        border: none;
        border-radius: 4px;
        cursor: pointer;
    }
    
    .cta-button:hover
    {
        background-color: #0056b3;
    }
    
    .cta-icon {
         display: none;
    }
    
    
    .accordion .accordion-content
    {
        padding: 0px;
        background-color: #ffffff;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        transition: max-height 0.5s ease, opacity 0.5s ease;
        font-size: 1em;
    }
     .accordion .accordion-content p{
          padding: 25px;
     }
    
    .accordion-icon
    {
        font-size: 1.5em;
        color: #065F84;/*#007bff;*/
        margin-right: 10px;
        transition: transform 0.3s ease;
    }
    
.accordion-content {
    padding: 10px;
    background-color: #ffffff;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.5s ease;
    width: 100%;
    box-sizing: border-box;
}
    
.accordion-content.active {
    max-height: 500px; /* Justera efter behov */
    opacity: 1;
}
    
    .accordion-header.active
    {
        background-color: #d3d3d3;
        /* Darker background color - active parent headers */
    }
    
    .accordion-header.active .accordion-icon
    {
        transform: rotate(45deg);
        color: #0056b3;
    }
    
    .accordion-item .accordion-header.active
    {
        background-color: #e9ecef;
        /* Lighter background - active child headers */
    }
    
    /* Responsive styling */
    @media (max-width: 768px){
        
       
        .accordion-header
        {
            font-size: 16px;
            padding: 10px;
        }
        
        
        
        .accordion-icon
        {
            font-size: 1.2em;
        }
        
        .accordion-content
        {
            font-size: 0.9em;
        }
        
        .popup 
        {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: white;
            padding: 20px;
            box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
            z-index: 1000; 
            width: auto; 
            text-align: center;
        }
         
         .cta-button
         {
            margin-left: auto;
            margin-right: 20px;
            padding: 5px 10px;
            background-color:#065F84; /*#007BFF;*/
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }
        
        .cta-text {
            display: none;
         }
        
         .cta-icon {
            display: inline;
            font-size: 20px;
        }
 
    }