* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(to right, #f7f7f7, #e6e6e6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 30px;
    text-align: center;
}

.header {
    text-align: left;
    width: 100%;
    max-width: 1200px;
}

.logo {
    font-size: 30px;
    font-weight: bold;
    color: #ff69b4;
}

.divider {
    width: 100%;
    height: 2px;
    background-color: #ddd;
    margin: 10px 0;
}

main {
    max-width: 800px;
    padding: 20px;
}

h1 {
    font-size: 32px;
    color: #333;
}

p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.image-container {
    width: 100%;
    height: 300px;
    background: url('HealthPictures/Diabetes.jpeg') no-repeat center center;
    background-size: cover;
    border-radius: 10px;
    margin: 20px 0;
    transition: transform 0.3s ease-in-out;
}

.image-container:hover {
    transform: scale(1.05);
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #c06c6c, #a85a5a);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
    margin-top: 15px;
}

.btn:hover {
    background: linear-gradient(135deg, #a85a5a, #8c4646);
    transform: translateY(-3px);
}

.footer {
    font-size: 14px;
    color: #777;
    margin-top: 20px;
    padding: 15px 0;
    width: 100%;
    background: #333;
    color: white;
    text-align: center;
    border-radius: 8px;
}

.footer a {
    color: #ff9494;
    text-decoration: none;
    font-weight: bold;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 800px) {
    main {
        width: 100%;
        padding: 20px;
    }

    .logo {
        font-size: 24px;
    }

    h1 {
        font-size: 26px;
    }

    p {
        font-size: 14px;
    }

    .image-container {
        height: 250px;
    }
}