/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f4;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

/* Hero Section */
.hero {
    background: linear-gradient(45deg, #ff6f61, #d54d46);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.cta-button {
    padding: 10px 20px;
    font-size: 1.1rem;
    background-color: #ff9b00;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #e87e00;
}

/* How It Works Section */
.centered-title {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

/* Video Container */
.tattoogpt-demo-section {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    width: 100%; /* Ensure it takes full width */
}

.video-container iframe {
    width: 80%;  /* Adjust this value to control the size of the video */
    height: 500px; /* Adjust the height as needed */
    border-radius: 8px;
    max-width: 100%; /* Ensures the video doesn't overflow its container */
}

.steps {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.step {
    text-align: center;
    width: 250px;
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.step p {
    font-size: 1rem;
}

/* Gallery Section */
.gallery {
    background-color: #fff;
    padding: 40px 0;
}

.gallery h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.gallery-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.gallery-image {
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: #f9f9f9;
    padding: 40px 0;
}

.why-choose-us h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature {
    text-align: center;
    width: 300px;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.feature p {
    font-size: 1rem;
}

/* Final Call to Action Section */
.final-cta {
    background-color: #ff6f61;
    color: white;
    padding: 40px 0;
}

.final-cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.25rem;
}

.final-cta .cta-button {
    background-color: #ff9b00;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
}

.final-cta .cta-button:hover {
    background-color: #e87e00;
}

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

footer p {
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .gallery-images {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        width: 100%;
    }

    .steps {
        flex-direction: column;
        gap: 20px;
    }

    .step {
        width: 100%;
    }
}


/* 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);
}

/* 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;
    }
}

