/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f8f8;
    text-align: center;
}

/* Header */
header {
    background: #720ac7;
    color: rgb(18, 165, 92);
    padding: 20px;
    text-align: center;
    position: relative;
    height: 250px; 
    padding: 20px;
}

.brand-logo {
    width: 300px;
    height: auto;
    display: block;
    margin: 0 auto 10px;
}

/* Navigation */
nav {
    margin-top: 10px;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #ff4081;
}

/* Banner Section */
.banner {
    background: url('images/banner.jpg') no-repeat center center/cover;
    color: rgb(12, 136, 78);
    padding: 80px 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.banner h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.banner p {
    font-size: 18px;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    background: #ff4081;
    color: white;
    padding: 12px 24px;
    font-size: 18px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.btn:hover {
    background: #d8356c;
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner h2 {
        font-size: 28px;
    }

    .banner p {
        font-size: 16px;
    }

    .btn {
        font-size: 16px;
        padding: 10px 20px;
    }
}