/* Specialty Contact Lenses Page Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

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

.hero-section h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.hero-section p {
    font-size: 1.2em;
    color: #555;
}

.image-gallery {
    margin-bottom: 40px;
}

.image-gallery h2 {
    text-align: center;
    margin-bottom: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.2s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

.education-section {
    margin-bottom: 40px;
}

.education-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.education-section p, .education-section ul {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

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

.cta-section h2 {
    margin-bottom: 20px;
}

.cta-section button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s;
}

.cta-section button:hover {
    background-color: #0056b3;
}