/* service-section */
.company-intro-section {
    text-align: center;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;
}

.logo {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
}

h1 {
    font-size: 2em;
    color: #333;
    margin-bottom: 10px;
}

.company-description {
    font-size: 1.1em;
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 1.8em;
    }

    .company-description {
        font-size: 1em;
    }

    .logo {
        width: 80px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5em;
    }

    .company-description {
        font-size: 0.95em;
    }

    .logo {
        width: 60px;
    }
}


.services-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.service-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.service-box {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 15px;
    display: flex;
    flex-direction: column;
}

.service-box img {
    width: 100%;
    height: auto;
    display: block;
}

.service-content {
    padding: 20px;
}

.service-content h2 {
    color: #0D47A1;
    font-size: 1.8em;
    margin-bottom: 10px;
}

.service-content h3 {
    color: #0D47A1;
    font-size: 1.3em;
    margin-bottom: 10px;
}

.service-content ul {
    list-style: none;
    line-height: 1.8;
}

.service-content ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.service-content ul li:before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #2E7D32;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-box {
        width: 100%;
    }

    .service-container {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
}

/* service-section */