
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Hero section */
.hero_sec {
    position: relative;
    width: 100%;
    height: 500px;
    background: url('../images/banner.webp') center center/cover no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

/* Overlay */
.img_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Darken overlay */
    z-index: 1;
}

/* Content inside hero */
.hero_content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

/* Headline & paragraph */
.hero_content h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.hero_content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f5f5;
}
header, footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 1rem;
}
.hero {
    background: url('https://via.placeholder.com/1600x500') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}
.section {
    padding: 2rem;
    background: white;
    margin: 1rem 0;
}
.cta-btn, .whatsapp-btn {
    background-color: #28a745;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}
.cta-btn:hover, .whatsapp-btn:hover {
    background-color: #218838;
}
ul {
    list-style-type: square;
    padding-left: 1.5rem;
}
.footer-links a {
    color: #ccc;
    margin: 0 10px;
    text-decoration: none;
}
.footer-links a:hover {
    text-decoration: underline;
}