/* Custom styles for Pharmers website */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

header {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

section {
    padding: 4rem 0;
}

h2 {
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 300;
    color: #000000;
}

h3 {
    color: #007bff;
    margin-bottom: 1.5rem;
}

.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-title {
    color: #007bff;
    font-weight: 600;
}

blockquote {
    border-left: 4px solid #007bff;
    padding-left: 1.5rem;
    font-style: italic;
    margin: 0;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

footer {
    margin-top: auto;
}

.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #007bff;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

ul {
    padding-left: 1.2rem;
}

ul li {
    margin-bottom: 0.5rem;
}

.text-center p {
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    section {
        padding: 3rem 0;
    }
}