/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    background-image: url('https://assets.pokemon.com/static2/_ui/img/chrome/container_bg.png');
}

a {
    text-decoration: none;
    color: #3d7dca;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-family: 'Flexo-Demi', 'Roboto', sans-serif;
}

ul {
    list-style: none;
}

section {
    padding: 3rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    background-color: #fff;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #ee6b2f 0%, #e6332a 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    font-family: 'Flexo-Demi', 'Roboto', sans-serif;
    letter-spacing: 1px;
}

.logo a {
    color: #fff;
    text-decoration: none;
    display: block;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.logo a:hover {
    color: #ffd800;
    text-decoration: none;
}

header nav ul {
    display: flex;
    gap: 1.5rem;
}

header nav ul li a {
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

header nav ul li a:hover {
    color: #ffd800;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 3rem 0 2rem;
    background: linear-gradient(135deg, #3d7dca 0%, #1a1a1a 100%);
    color: #fff;
    background-image: url('https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/other/official-artwork/383.png'), 
                      url('https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/other/official-artwork/382.png'),
                      linear-gradient(135deg, #3d7dca 0%, #1a1a1a 100%);
    background-size: 200px, 200px, cover;
    background-position: left center, right center, center;
    background-repeat: no-repeat;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #ffd800;
    font-family: 'Flexo-Demi', 'Roboto', sans-serif;
    letter-spacing: 2px;
    padding: 0 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.cta-button {
    background-color: #ee6b2f;
    color: #fff;
    padding: 0.6rem 2.5rem;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    min-width: 120px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border: 2px solid #fff;
}

.cta-button.secondary {
    background-color: #3d7dca;
    color: #fff;
    border: 2px solid #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #d0502a;
    transform: translateY(-2px);
}

.cta-button.secondary:hover {
    background-color: #2b5a9a;
}

.cta-button.large {
    padding: 1rem 3rem;
    font-size: 1.2rem;
}

/* Play Online Section */
.play-online {
    text-align: center;
    background-color: #fff;
    padding-top: 3rem;
    padding-bottom: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    border-radius: 12px;
}

.play-online h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: #3d7dca;
    font-family: 'Flexo-Demi', 'Roboto', sans-serif;
    letter-spacing: 2px;
}

/* Best Site Section */
.best-site {
    background-color: #fff;
    padding: 2rem 0;
    border-radius: 12px;
}

.site-praise {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 1.5rem;
    background-color: #f2f2f2;
    border-left: 3px solid #3d7dca;
    border-right: 3px solid #3d7dca;
    border-radius: 12px;
}

.site-praise h2 {
    color: #3d7dca;
    margin-bottom: 1rem;
}

/* Play/Download Section */
.play-now {
    text-align: center;
    background-color: #fff;
    padding-top: 3rem;
    padding-bottom: 3rem;
    border-radius: 12px;
}

.warning {
    background-color: rgba(238, 107, 47, 0.1);
    border-left: 4px solid #ee6b2f;
    padding: 0.8rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.tagline {
    font-style: italic;
    margin: 2rem 0;
    font-size: 1.2rem;
}

.center {
    justify-content: center;
    margin: 1rem auto;
}

/* Game Container Styles */
.game-container {
    max-width: 1000px;
    margin: 1rem auto;
    padding: 1rem;
    background-color: #f2f2f2;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(61, 125, 202, 0.3);
    position: relative;
    border: 3px solid #3d7dca;
}

.game-placeholder {
    width: 100%;
    height: 420px;
    background-color: #e6f0ff;
    margin: 1rem 0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #3d7dca;
}

.game-placeholder iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-description {
    margin-top: 0.5rem;
    color: #3d7dca;
    font-weight: bold;
}

.tip {
    margin: 1rem 0;
    padding: 0.8rem;
    background-color: #f8f1d9;
    border-left: 4px solid #ffd800;
    color: #333;
    font-size: 0.9rem;
    text-align: left;
    border-radius: 4px;
}

/* Feature Sections */
.features-detail {
    background-color: #fff;
    padding: 3rem 0;
    border-radius: 12px;
    position: relative;
}

.features-detail::before {
    content: "";
    position: absolute;
    top: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    background-image: url('https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/items/poke-ball.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.7;
}

.features-detail h2 {
    text-align: center;
    color: #3d7dca;
    margin-bottom: 2rem;
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.feature {
    display: flex;
    margin-bottom: 4rem;
    gap: 3rem;
    align-items: center;
    padding: 0 1.5rem;
    position: relative;
}

.feature::after {
    content: "";
    position: absolute;
    bottom: -2rem;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, transparent, #3d7dca, transparent);
}

.feature:last-child::after {
    display: none;
}

.feature-image {
    flex: 1;
    max-width: 45%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 3px solid #3d7dca;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-image:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.feature-content {
    flex: 1;
    padding: 1rem;
}

.feature-content h3 {
    color: #ee6b2f;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    position: relative;
    padding-left: 0.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-left: 4px solid #ee6b2f;
    display: flex;
    align-items: center;
}

.feature-content p {
    line-height: 1.8;
    padding: 0 0.5rem;
}

.feature:nth-child(odd) .feature-image {
    order: 2;
}

/* About Sections */
.about {
    background-color: #fff;
    padding: 3rem 0;
    text-align: center;
    border-radius: 12px;
}

.about > h2 {
    color: #3d7dca;
    margin-bottom: 1.5rem;
}

.about-section {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background-color: #f2f2f2;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-section:hover {
    transform: translateY(-5px);
}

.about-icon {
    font-size: 2.5rem;
    color: #ee6b2f;
    margin-bottom: 1rem;
    height: 60px;
    width: 60px;
    line-height: 60px;
    text-align: center;
    margin: 0 auto 1rem;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-section h3 {
    color: #3d7dca;
    margin: 1rem 0;
}

/* Reviews Section */
.reviews {
    background-color: #fff;
    padding: 3rem 0;
    text-align: center;
    border-radius: 12px;
}

.reviews h2 {
    color: #3d7dca;
    margin-bottom: 2rem;
}

.review-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.review-item {
    flex: 1;
    min-width: 280px;
    padding: 1.5rem;
    background-color: #f2f2f2;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.review-quote {
    font-style: italic;
    position: relative;
    padding: 0 1rem;
}

.review-quote::before {
    content: "\201C";
    font-size: 4rem;
    position: absolute;
    left: -10px;
    top: -20px;
    color: #ee6b2f;
    opacity: 0.3;
}

.review-source {
    margin-top: 1rem;
    font-weight: bold;
    color: #3d7dca;
    text-align: right;
}

/* Download Section */
.download-game {
    text-align: center;
    padding: 3rem 0;
    background-color: #fff;
    border-radius: 12px;
}

.download-game h2 {
    color: #3d7dca;
    margin-bottom: 1rem;
}

.download-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.download-option {
    padding: 2rem;
    background-color: #f2f2f2;
    border-radius: 12px;
    min-width: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.download-option:hover {
    transform: translateY(-5px);
}

.download-option h3 {
    color: #3d7dca;
    margin-bottom: 1rem;
}

.file-size {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.download-button {
    background-color: #ee6b2f;
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.download-button:hover {
    background-color: #d0502a;
    transform: translateY(-2px);
}

.download-option.windows-only {
    border: 2px solid #3d7dca;
}

/* FAQ Section */
.faq {
    background-color: #fff;
    padding: 3rem 0;
    border-radius: 12px;
}

.faq h3 {
    color: #3d7dca;
    text-align: center;
    margin-bottom: 2rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background-color: #f2f2f2;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-item h4 {
    color: #ee6b2f;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    position: relative;
    padding-left: 1.5rem;
}

.faq-item h4::before {
    content: "●";
    color: #3d7dca;
    position: absolute;
    left: 0;
    top: 0;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #3d7dca 0%, #1a1a1a 100%);
    color: #fff;
    padding: 2rem 0 0;
    margin-top: 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
}

.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-logo h3 a {
    color: #ffd800;
    text-decoration: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-logo h3 a:hover {
    color: #fff;
}

.footer-logo p {
    color: #ccc;
}

.footer-links, .footer-news {
    margin-top: 1rem;
}

.footer-links h4, .footer-news h4 {
    color: #ffd800;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    border-bottom: 2px solid #ee6b2f;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.footer-links ul li, .footer-news ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a, .footer-news ul li a {
    color: #fff;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover, .footer-news ul li a:hover {
    color: #ffd800;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.3);
    text-align: center;
    padding: 1rem 0;
    margin-top: 1rem;
    color: #ccc;
    font-size: 0.9rem;
}

.footer-bottom-links {
    margin-top: 0.5rem;
}

.footer-bottom-links a {
    color: #ccc;
    margin: 0 0.5rem;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* Media Queries */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0.8rem 1rem;
        flex-direction: column;
    }

    header nav ul {
        margin-top: 1rem;
        gap: 1rem;
    }

    .hero {
        background-position: left bottom, right bottom, center;
        background-size: 150px, 150px, cover;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .feature {
        flex-direction: column;
        padding: 0 1rem;
        gap: 2rem;
    }

    .feature:nth-child(odd) .feature-image {
        order: 0;
    }

    .feature-image, .feature-content {
        max-width: 100%;
    }

    .feature-image {
        margin: 0 auto;
        width: 90%;
    }
    
    .feature-content {
        padding: 0.5rem;
    }

    .download-options {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-logo, .footer-links, .footer-news {
        margin-bottom: 2rem;
    }

    .pokeball-icon {
        width: 20px;
        height: 20px;
        margin: 0 5px;
    }
    
    .feature-ball {
        width: 20px;
        height: 20px;
    }

    .language-switcher {
        margin-left: 0;
        margin-top: 10px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
}

.pokeball-icon {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin: 0 10px;
}

.feature-ball {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 10px;
}

.download-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f8f1d9;
    border-radius: 12px;
    border-left: 4px solid #ee6b2f;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.download-info p {
    line-height: 1.7;
    color: #333;
}

/* Legal Pages (Privacy Policy, Terms of Service) */
.legal-hero, .about-hero, .contact-hero {
    background: linear-gradient(135deg, #3d7dca 0%, #1a1a1a 100%);
    padding: 3rem 0;
}

.legal-content, .about-us-main {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.last-updated {
    text-align: right;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.policy-section {
    margin-bottom: 2.5rem;
}

.policy-section h2 {
    color: #3d7dca;
    border-bottom: 2px solid #ee6b2f;
    padding-bottom: 0.5rem;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.policy-section h2 i {
    margin-right: 10px;
    color: #ee6b2f;
}

.policy-section h3 {
    color: #333;
    margin: 1.5rem 0 1rem;
    font-size: 1.3rem;
}

.policy-list, .contact-list, .philosophy-list {
    list-style-type: none;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.policy-list li, .contact-list li, .philosophy-list li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.policy-list li:before, .philosophy-list li:before {
    content: "•";
    color: #ee6b2f;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.contact-list li {
    padding-left: 0;
}

/* About Us Page */
.team-members {
    margin-top: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.team-member {
    background-color: #f5f5f5;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 3px solid #3d7dca;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    color: #3d7dca;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #ee6b2f;
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.member-bio {
    font-size: 0.9rem;
    color: #333;
}

.additional-credits {
    margin-top: 2rem;
    padding: 1rem;
    background-color: #f5f5f5;
    border-radius: 8px;
    font-style: italic;
}

.community-section, .legal-note {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.community-section h2, .legal-note h3 {
    color: #3d7dca;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background-color: #f5f5f5;
    border-radius: 12px;
    min-width: 150px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
    background-color: #e6f0ff;
}

.social-link i {
    font-size: 2.5rem;
    color: #3d7dca;
    margin-bottom: 1rem;
}

.social-link span {
    font-weight: bold;
    color: #333;
}

/* Contact Us Page */
.contact-main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-option {
    background-color: #f5f5f5;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-icon {
    font-size: 2.5rem;
    color: #ee6b2f;
    margin-bottom: 1rem;
    height: 60px;
    width: 60px;
    line-height: 60px;
    text-align: center;
    margin: 0 auto 1rem;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-option h3 {
    color: #3d7dca;
    margin-bottom: 1rem;
}

.contact-email {
    margin: 1rem 0;
}

.contact-email a {
    color: #ee6b2f;
    font-weight: bold;
    text-decoration: underline;
}

.response-time {
    margin-top: auto;
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
}

.contact-form-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    text-align: center;
}

.contact-form-section h2 {
    color: #3d7dca;
    margin-bottom: 1rem;
}

.contact-form {
    max-width: 700px;
    margin: 2rem auto;
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.required {
    color: #ee6b2f;
}

.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: #e6f0ff;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #3d7dca;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.submit-button {
    background-color: #ee6b2f;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.submit-button:hover {
    background-color: #d0502a;
    transform: translateY(-2px);
}

.follow-section, .faq-preview {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.follow-section h2, .faq-preview h2 {
    color: #3d7dca;
    margin-bottom: 1rem;
}

.faq-buttons {
    margin-top: 2rem;
}

.faq-button {
    background-color: #3d7dca;
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.faq-button:hover {
    background-color: #2b5a9a;
    transform: translateY(-2px);
}

/* Language Switcher Styles */
.language-switcher {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.language-switcher span {
    margin-right: 10px;
    color: #fff;
    font-size: 14px;
}

.language-options {
    display: flex;
    gap: 10px;
}

.language-options a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.language-options a:hover {
    opacity: 1;
}

.language-options a.active-language {
    opacity: 1;
    font-weight: bold;
    text-decoration: underline;
} 