body {
    font-family: Arial, sans-serif;
}
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}
.service-card {
    transition: transform 0.3s;
    margin-bottom: 30px;
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}
.service-icon {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}
.business-feature {
    margin-bottom: 40px;
}
.feature-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.hero-section {
    background-color: #f8f9fa;
    padding: 60px 0;
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
}
.section-title {
    margin-bottom: 30px;
    color: #343a40;
    padding-bottom: 15px;
    border-bottom: 2px solid #dee2e6;
}
.benefits-list {
    list-style-type: none;
    padding-left: 0;
}
.benefits-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 30px;
}
.benefits-list li:before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    position: absolute;
    left: 0;
}
footer {
    background-color: #343a40;
    color: white;
    padding: 30px 0;
    margin-top: 50px;
}
.social-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}