/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #0056b3;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header .logo h1 {
    margin: 0;
    font-size: 24px;
}

header .logo p {
    margin: 0;
    font-size: 12px;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header nav ul li {
    margin: 0 10px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

header nav ul li a:hover {
    text-decoration: underline;
}

/* Main Content */
main {
    margin-top: 100px;
    padding: 20px;
}

section {
    margin-bottom: 40px;
}

section h2 {
    color: #0056b3;
    margin-bottom: 10px;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background-color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 8px;
}

.placeholder-image img {
    width: 100%;
    height: 200px;
    object-fit:contain;
    border-radius:8px;
}

/* Footer */
footer {
    background-color: #0056b3;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

/* WhatsApp Icon */
.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.whatsapp-icon:hover {
    transform: scale(1.2);
}

.whatsapp-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    header nav ul {
        flex-direction: column;
        align-items: flex-start;
    }

    header nav ul li {
        margin: 5px 0;
    }

    .placeholder-image {
        height: 150px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 10px;
    }

    header .logo h1 {
        font-size: 20px;
    }

    header .logo p {
        font-size: 10px;
    }

    .placeholder-image {
        height: 100px;
    }

    .whatsapp-icon {
        width: 40px;
        height: 40px;
    }
}
