body {
    background-color: #121212;
    color: #ffffff;
}
.navbar {
    background-color: #1f1f1f;
}
.hero h1 {
    font-size: 3rem;
    font-weight: bold;
}
section {
    padding: 60px 0;
}
.card {
    background-color: #252525;
    color: #dddddd;
    height: 100%;
}
.card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.services-section {
    background-color: #1f1f1f;
}
.contact-section {
    background-color: #1b1b1b;
}
.services-section h2,
.contact-section h2 {
    margin-bottom: 40px;
}
.contact-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}
.section-divider {
    height: 2px;
    background-color: #555;
    /*margin: 40px 0;*/
}
.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 300px;  /* Make sure cards are not too wide */
    margin: 0 auto;
    background-color: #252525;
    color: #ffffff;
}

.contact-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.contact-card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.contact-card .card-body p {
    margin-bottom: 10px;
}

.contact-card .card-body a {
    margin-top: 10px;
}

.contact-img {
    /*width: 100px;*/
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}
.card-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.card-title {
    margin-bottom: 0.5rem;
}
.social-media-section i:hover {
    transform: scale(1.2);
    transition: 0.3s ease;
}
footer {
    background-color: #1f1f1f;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
}