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

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

header {
    background: linear-gradient(135deg, #1a5c9e 0%, #0d3a6d 100%);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.header-container h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 15px;
}

/* Content Sections */
.pharmacy-description {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.pharmacy-description h2 {
    color: #1a5c9e;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.pharmacy-description p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.advantages {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.advantage-card {
    flex: 1;
    min-width: 300px;
    background-color: #e3f2fd;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 0.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.advantage-card h3 {
    color: #1a5c9e;
    margin-bottom: 0.5rem;
}

.testimonials {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.testimonials h2 {
    color: #1a5c9e;
    margin-bottom: 1.5rem;
    text-align: center;
}

.testimonial {
    background-color: #f1f8ff;
    padding: 1.5rem;
    border-left: 4px solid #1a5c9e;
    margin-bottom: 1rem;
    border-radius: 0 4px 4px 0;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 0.5rem;
}

.testimonial span {
    display: block;
    text-align: right;
    color: #666;
    font-size: 0.9rem;
}

.resources {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.resources h2 {
    color: #1a5c9e;
    margin-bottom: 1.5rem;
}

.resources ul {
    list-style-type: none;
}

.resources li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.resources li:before {
    content: "•";
    color: #1a5c9e;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.resources a {
    color: #1a5c9e;
    text-decoration: none;
    transition: color 0.3s;
}

.resources a:hover {
    color: #0d3a6d;
    text-decoration: underline;
}

/* Footer */
footer {
    background: #0d3a6d;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.contact-info {
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
    font-size: 0.9rem;
}

/* Table Styles */
table {
    margin: 0 auto;
    border-collapse: collapse;
}