body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

header p {
    margin: 10px 0 0;
    font-size: 1.2em;
}

.container {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

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

.hero h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.hero a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    transition: background-color 0.3s;
}

.hero a:hover {
    background-color: #0056b3;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.feature {
    flex: 1 1 calc(33.333% - 20px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    text-align: center;
    padding: 15px;
    transition: transform 0.3s;
}

.feature img {
    max-width: 100%;
    border-bottom: 2px solid #f0f0f0;
    border-radius: 8px 8px 0 0;
}

.feature h3 {
    margin: 15px 0;
    font-size: 1.5em;
    color: #222;
}

.feature p {
    font-size: 1em;
    color: #555;
}

.feature:hover {
    transform: translateY(-5px);
}

footer {
    text-align: center;
    padding: 20px 0;
    background-color: #222;
    color: #fff;
}

footer p {
    margin: 0;
    font-size: 1em;
}

@media (max-width: 768px) {
    .features {
        flex-direction: column;
    }

    .feature {
        flex: 1 1 100%;
    }
}


/* Style for the SEO Links Section */
.seo-links {
    background-color: #070606;
    padding: 20px;
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.seo-links h2 {
    font-size: 24px;
    font-weight: bold;
    color: #f39c12;
    margin-bottom: 15px;
    text-align: center;
}

.seo-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.seo-links ul li {
    margin: 10px 0;
}

.seo-links ul li a {
    text-decoration: none;
    color: #5a75d5;
    font-size: 18px;
    transition: color 0.3s ease;
}

.seo-links ul li a:hover {
    color: #f39c12;
    text-decoration: underline;
}

@media (min-width: 768px) {
    .seo-links ul {
        flex-direction: row;
        justify-content: center;
    }

    .seo-links ul li {
        margin: 0 15px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Main styling for accessibility button */
.accessibility-button {
    position: fixed;
    top: 20px;
    right: 20px; /* This will place it on the right */
    background-color: #007bff; /* Blue color */
    color: white;
    border: none;
    border-radius: 50%;
    padding: 15px;
    font-size: 24px;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transition for hover effects */
}

.accessibility-button:hover {
    background-color: #0056b3; /* Darker shade of blue */ !important;
    transform: scale(1.1); /* Slightly increase the size on hover */
}

/* Icon inside the button (can replace with any accessibility icon) */
.accessibility-button i {
    pointer-events: none;
}

/* For mobile and smaller screens */
@media (max-width: 768px) {
    .accessibility-button {
        top: 15px;
        right: 15px;
        padding: 10px;
    }
}
