
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #efeeef;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 40px 0px 20px 0px;
    min-height: 100vh;
}
.line{
    height: 3px;
    background: #27537f; /* Primary blue */
    margin: 20px 0;
}
.header-content .line{
    flex: 1;
    margin-left: 20px;
}
.mobile-only { display: none !important; }

/* Hader */
.header {
    padding-left:10%;
    padding-right: 0;
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
}
.header-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.title {
    font-family: 'Poppins', sans-serif;
    font-size: 4.375rem;
    line-height: 1.1;
    font-weight: 700;
    color: #27537f; /* Primary blue */
    margin-bottom: 0px;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.8s ease;
}

.subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 2.25rem;
    font-weight: 600;
    color: #27537f; /* Primary blue */
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.2s;
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

.slide-in {
    animation: slideIn 1s ease forwards 0.3s;
}

@keyframes fadeIn {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    to { opacity: 1; transform: translateY(0); }
}


.mobile-only { display: none; }

/* Services Section */
.services {
    padding-left:10%;
    padding-right: 0;
    margin: 0;
    z-index: 1;
}
.services-content{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.service-list-container{
    flex-basis: 44%;
    /*min-width: 400px;*/
}
.service-list {
    list-style: disc;
    /*min-width: 390px;*/
    text-align: left;
    margin-left: 20px;
    margin-top: -20px;
}
.service-item {
    font-size: 1.675rem;
    line-height: normal;
    margin: 6px 0;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
    color: #333; /* Dark gray */
}
.service-item.visible {
    opacity: 1;
    transform: translateX(0);
}
.service-image-container {
    /*flex: 1;
    align-self: center;*/
    flex-basis: 56%;
}
.service-image{
    width: 100%;
    max-width: 420px;
    height: auto;
    opacity: 0.8;
    transition: transform 0.3s ease;
    margin-top: -10px;
    margin-bottom: -20px;
}
.service-image:hover {
    transform: scale(1.05);
}

/* CTA Section */
.cta-image-container{
    display: block;
    text-align: center;
    margin: 15px 0;
}
.cta-image{
    width: 100%;
    max-width: 300px;
    height: auto;
    opacity: 0.8;
    transition: transform 0.3s ease;
}
.cta {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding-bottom: 20px;
    padding-left:9%;
    position: relative;
    z-index: 2;
}

.cta-button {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    background: white;
    color: red;
    border: 3px solid #27537f; /* Primary blue */
    padding: 15px 30px;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s ease;
    box-shadow: 0 4px 8px rgba(39, 83, 127, 0.3);
}

.cta-button:hover {
    background: #1e3f5e;
    color: white;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(39, 83, 127, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(39, 83, 127, 0); }
    100% { box-shadow: 0 0 0 0 rgba(39, 83, 127, 0); }
}


/* Responsive Design */
@media (max-width: 920px) {
.header, .services, .cta  {
    padding-left:5%;
}
}

@media (max-width: 768px) {
    .container {
    padding: 20px 30px;
    }
    .header, .services, .cta  {
    padding-left:0 ;
    }
    .header-content{
    flex-direction: column;  
    }
    .header-content .line{
        flex: auto;    
        width: 100%;
        margin-left: 0;
    }   
    .title {
        font-size: 2.75rem;
    }
    .subtitle {
        font-size: 1.2rem;
        text-align: center;
    }
    .services-content{
        flex-direction: column-reverse;
        margin-bottom: 30px;    
    }
    .service-image{
        max-width: 180px;
        height: auto;
        margin-top: 0px;
        margin-bottom: 30px;
    }
    .service-item {
        font-size: 1.25rem;
    }
    .cta {
    justify-content: center;
    align-items: center;
    }
    .cta-button {
        font-size: 1.1rem;
        padding: 12px 24px;
    }
    .mobile-only { 
        display: block !important;
    }
    body { min-height: 100vh; }
}
