body {
    font-family: Arial, sans-serif;
}
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}
.service-card {
    transition: transform 0.3s;
    margin-bottom: 20px;
    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: 100px;
    margin: 15px auto;
}
.price-badge {
    font-size: 1.25rem;
    margin: 10px 0;
}
.hero-section {
    position: relative;
    background-image: url('../../images/swiatlowod.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    padding: 100px 0;
    margin-bottom: 30px;
    text-align: center;
    color: white;
    overflow: hidden;
}
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.hero-section .container {
    position: relative;
    z-index: 2;
}
.section-title {
    margin-bottom: 30px;
    color: #343a40;
}
.feature-img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}
footer {
    background-color: #343a40;
    color: white;
    padding: 30px 0;
    margin-top: 50px;
}
.social-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}