/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    text-align: center;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #35111e;
    padding: 15px;
    color: white;
}

.logo img {
    height: 50px;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

.nav-btn {
    text-decoration: none;
    padding: 10px 15px;
    background: white;
    color: #c43f53;
    border-radius: 5px;
    font-weight: bold;
}

.nav-btn:hover {
    background: #ff4757;
    color: white;
}

/* Slideshow */
/* Slideshow */
.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
}

.slide {
    display: none;
}

.slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Hero Section */
.hero {
    padding: 50px 20px;
    background: linear-gradient(to right, #a83d4c, #923c43);
    color: white;
}

.cta-button {
    display: inline-block;
    padding: 12px 20px;
    background: white;
    color: #ff4757;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 25px;
    text-decoration: none;
}

.cta-button:hover {
    background: #ff4757;
    color: white;
}

/* Services */
.services {
    padding: 40px 20px;
}

.service-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
    width: 200px;
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 20px;
}

.footer-container {
    display: flex;
    justify-content: space-around;
}

.footer-section {
    margin-bottom: 20px;
}

.footer-credit {
    margin-top: 20px;
}
