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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

h1, h2, h3 {
    font-weight: 600;
}

.container {
    width: 80%;
    margin: 0 auto;
    max-width: 1200px;
}

/* Header */
header {
    background-color: #007bff;
    color: white;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-size: 42px;
}

header h3 {
    font-size: 18px;
}

nav ul {
    list-style: none;
    margin-top: 10px;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero-section {
    background: url('medication1.avif') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-section h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.hero-section p {
    font-size: 20px;
    margin-bottom: 25px;
}

.btn {
    background-color: #28a745;
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #218838;
}

/* About Section */
.about-section {
    background-color: #fff;
    padding: 60px 0;
    text-align: center;
}

.about-section h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Services Section */
.services-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.services-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-item {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-item h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.service-item p {
    font-size: 16px;
    color: #555;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

.contact-section h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.contact-info {
    list-style: none;
    font-size: 18px;
    line-height: 2;
}

/* Footer */
footer {
    background-color: #007bff;
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer p {
    margin: 0;
}

/* Media Queries */
@media (max-width: 768px) {
    .hero-section h2 {
        font-size: 32px;
    }

    .hero-section p {
        font-size: 18px;
    }

    .btn {
        padding: 10px 20px;
    }
}
