.service-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 0;
    background-color: black;
    color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    margin: 20px auto;
    max-width: 1500px;
}

.service-section h2 {
    text-align: center;
    font-size: 34px;
    margin-bottom: 30px;
    color: white;
    text-transform: uppercase;
    border-bottom: 2px solid red; /* Accent underline */
    display: inline-block;
    padding-bottom: 10px;
}

.service-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    flex-wrap: wrap; /* Ensures responsiveness */
}


.service-content img {
    width: 300px;
    height: 300px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    max-width: fit-content;
}

.text-content p {
    font-size: 1.1em;
    line-height: 1.6;
    width: 500px;
    margin: 10px;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px;
    color: white;
    background-color: #5193f7;
    text-decoration: none;
    font-size: 1em;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
    width: 500px;
}

.cta-button:hover {
    background-color: #669ff3;
    transform: translateY(-3px);
    color: white;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .service-section {
        padding: 40px 0;
    }
    .service-content {
        flex-direction: column;
        gap: 40px;
    }

    .service-content img {
        width: 100%;
        height: auto;
    }

    .text-content {
        text-align: center;
    }
    .text-content p {
        width: 250px;
    }
    .cta-button {
        width: 250px;
    }
}





/* General Section Styling 
.service-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 50px 20px;
    background-color: black;
    color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    margin: 20px auto;
    max-width: 1500px;
}


.service-section h2 {
    font-size: 34px;
    margin-bottom: 30px;
    color: white;
    text-transform: uppercase;
    border-bottom: 2px solid red; 
    display: inline-block;
    padding-bottom: 10px;
}

.service-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 20px;
}


.service-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #ddd; 
    margin: 0;
    max-width: 700px;
    text-align: left; 
}


.service-content img {
    width: 100%;
    max-width: 500px; 
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
}


.service-section a.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #5193f7;
    color: white;
    font-size: 16px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.service-section a.cta-button:hover {
    background-color: #669ff3; 
}


@media (max-width: 768px) {
    .service-content {
        flex-direction: column; 
        text-align: center;
    }

    .service-content p {
        text-align: center;  
    }
}
*/