
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Services Section */
.services-section {
    background-color: white;
    padding: 80px 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    
}

.section-title {
    font-size: 28px;
    margin-bottom: 50px;
    font-weight: bold;
    color: #222;
    text-transform: uppercase;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.service-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
    text-align: left;
}

.service-item:last-child {
    border-bottom: none;
}

.service-title {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
}

.service-description {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}








/* Responsive Design */
@media (min-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 767px) {
    .section-title {
        font-size: 24px;
    }
    
    .copyright {
        text-align: center;
    }
}