:root {
    --bg-color: #e0f7ff;
    --card-bg: #ffffff;
    --primary-text: #0A4D68;
    --secondary-text: #475569;
    --accent-color: #00C2FF;
    --highlight-color: #FF9900;
    --primary-color: #00C2FF;
    --primary-gradient: linear-gradient(135deg, #00C2FF, #0A4D68);
    --border-color: #bfdbfe;
    --success-color: #00C2FF;
    --card-hover-shadow: 0 10px 30px rgba(0, 194, 255, 0.2);
    --pudgy-blue: #00C2FF;
    --pudgy-orange: #FF9900;
    --pudgy-light-blue: #bfdbfe;
    --pudgy-dark-blue: #0A4D68;
}

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--primary-text);
    line-height: 1.5;
    min-height: 100vh;
    background-image:
        url("images/ice-pattern.svg"),
        radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 40%);
    background-size: 100px 100px, cover;
    animation: backgroundFloat 60s infinite linear;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

main {
    text-align: center;
}

@keyframes backgroundFloat {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(5deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(15px) rotate(-5deg);
    }
}

/* Header & Navigation */
header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--pudgy-blue);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.logo-img {
    height: 30px;
    margin-right: 10px;
    vertical-align: middle;
}

.logo a {
    font-weight: 800;
    font-size: 26px;
    color: var(--pudgy-dark-blue);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.logo a:hover {
    transform: scale(1.05);
    color: var(--pudgy-blue);
}

.logo-img {
    border-radius: 50%;
    border: 3px solid var(--pudgy-blue);
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.logo:hover .logo-img {
    transform: rotate(10deg);
    border-color: var(--pudgy-orange);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--secondary-text);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    padding: 8px 16px;
    border-radius: 30px;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--pudgy-dark-blue);
    background-color: rgba(59, 130, 246, 0.1);
    transform: translateY(-3px);
}

.nav-links a.active {
    background-color: var(--pudgy-blue);
    color: white;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--pudgy-blue);
    border-radius: 50%;
}

.search-cmd {
    background-color: var(--card-bg);
    padding: 5px 10px;
    border-radius: 4px;
    color: var(--secondary-text);
    font-size: 14px;
}

.mobile-menu {
    display: none;
    color: var(--secondary-text);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-right: 10px;
}

.social-icon {
    color: var(--pudgy-blue);
    font-size: 20px;
    transition: all 0.3s;
    background-color: rgba(59, 130, 246, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid transparent;
}

.social-icon:hover {
    color: white;
    background-color: var(--pudgy-blue);
    transform: translateY(-5px);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 0 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    position: relative;
    background-image: url("images/hero-bg.svg");
    background-size: cover;
    background-position: center bottom;
    margin-bottom: 50px;
    overflow: hidden;
}

/* Banner Container */
.banner-container {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    margin: 60px 0 30px;
}

.banner-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 194, 255, 0.2);
}

.hero-wave {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background-image: url("images/wave-bg.svg");
    background-size: cover;
    background-position: center bottom;
    z-index: 1;
}

.hero .left-penguin {
    content: '';
    position: absolute;
    bottom: 80px;
    left: 50px;
    width: 150px;
    height: 150px;
    background-image: url("images/bbac9e43-ad6f-46d5-bbe9-3f1fe29681c5.png");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0.9;
    animation: float 6s infinite ease-in-out 2s;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background-image: url("images/wave-bg.svg");
    background-size: cover;
    background-position: center bottom;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 80px;
    right: 50px;
    width: 150px;
    height: 150px;
    background-image: url("images/c1a77385-2342-4b67-a428-b7e63536b3e0.png");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0.9;
    animation: float 6s infinite ease-in-out;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--pudgy-dark-blue);
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
    line-height: 1.2;
}

.subtitle {
    color: var(--secondary-text);
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    position: relative;
}

.subtitle::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--pudgy-blue);
    border-radius: 2px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.btn {
    background-color: var(--card-bg);
    color: var(--pudgy-dark-blue);
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid var(--pudgy-blue);
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 6px rgba(59, 130, 246, 0.1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn i {
    margin-right: 12px;
    font-size: 20px;
}

.btn:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.btn:hover::before {
    opacity: 1;
}

.primary-btn {
    background: var(--primary-gradient);
    border: none;
    color: white;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
    padding: 18px 36px;
    font-size: 20px;
}

.primary-btn::before {
    background: linear-gradient(135deg, var(--pudgy-dark-blue), var(--pudgy-blue));
    opacity: 0;
}

.primary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.large-btn {
    padding: 16px 32px;
    font-size: 20px;
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(59, 130, 246, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.stat-box {
    background: rgba(255, 255, 255, 0.95);
    border: 3px solid var(--pudgy-blue);
    backdrop-filter: blur(10px);
    padding: 30px 40px;
    border-radius: 16px;
    min-width: 200px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.3);
    border-color: var(--pudgy-orange);
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-gradient);
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--pudgy-dark-blue);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--secondary-text);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Title */
.section-title {
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 40px;
    font-weight: 800;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    color: var(--pudgy-dark-blue);
}

.section-title h2::before {
    content: '';
    position: absolute;
    left: -60px;
    top: 0;
    width: 50px;
    height: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.8;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--primary-gradient);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Features */
.features {
    margin: 80px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.4s;
    border: 1px solid var(--pudgy-light-blue);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
    border-color: var(--pudgy-blue);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover::before {
    opacity: 1;
}

.emoji {
    font-size: 50px;
    margin-bottom: 25px;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s;
    background-color: rgba(59, 130, 246, 0.1);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.feature-card:hover .emoji {
    transform: scale(1.1);
    background-color: rgba(59, 130, 246, 0.2);
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--pudgy-dark-blue);
    position: relative;
    display: block;
    text-align: center;
}

.feature-card p {
    color: var(--secondary-text);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    text-align: center;
}

/* CTA Section */
.cta-section {
    margin: 100px 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.1));
    border-radius: 16px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 150px;
    height: 150px;
    background-image: url("images/2629ee12-902b-4415-91fa-cfff399fb4b5.png");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.9;
    animation: float 6s infinite ease-in-out;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: var(--primary-gradient);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 44px;
    margin-bottom: 25px;
    font-weight: 800;
    color: var(--pudgy-dark-blue);
    line-height: 1.2;
}

.cta-content p {
    color: var(--secondary-text);
    font-size: 22px;
    margin-bottom: 40px;
    font-weight: 500;
    line-height: 1.6;
}

.cta-bottom {
    margin: 80px 0;
    position: relative;
}

/* Pricing */
.pricing {
    margin: 60px 0;
}

.pricing-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pricing-card {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 40px 30px;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: left;
    border: 1px solid var(--pudgy-light-blue);
    transition: all 0.4s;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-gradient);
}

/* Removed penguin image from pricing card */

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
    border-color: var(--pudgy-blue);
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--pudgy-dark-blue);
}

.divider {
    height: 2px;
    background-color: var(--pudgy-light-blue);
    margin-bottom: 25px;
    border-radius: 1px;
}

.pricing-value {
    font-size: 22px;
    margin-top: 20px;
    color: var(--pudgy-dark-blue);
    font-weight: 600;
}

.pricing-desc {
    color: var(--pudgy-blue);
    font-size: 16px;
    margin-top: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
footer {
    padding: 60px 0 80px;
    text-align: center;
    border-top: 1px solid var(--pudgy-light-blue);
    margin-top: 80px;
    position: relative;
    background-color: rgba(59, 130, 246, 0.05);
}

footer::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background-image: url("images/bbac9e43-ad6f-46d5-bbe9-3f1fe29681c5.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-color: var(--bg-color);
    padding: 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-social {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
}

.footer-social .social-icon {
    font-size: 24px;
    color: var(--pudgy-blue);
    background-color: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--pudgy-light-blue);
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.1);
}

.footer-social .social-icon:hover {
    color: white;
    background-color: var(--pudgy-blue);
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
}

footer p {
    color: var(--pudgy-dark-blue);
    font-size: 16px;
    font-weight: 700;
}

footer p::before {
    content: "Powered by";
    margin-right: 5px;
    color: var(--secondary-text);
    font-weight: 500;
}

/* How It Works */
.how-it-works {
    margin: 80px 0;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.step {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    position: relative;
    border: 1px solid var(--pudgy-light-blue);
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
}

.step:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
    border-color: var(--pudgy-blue);
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-gradient);
}

.step-number {
    background: var(--primary-gradient);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 25px;
    color: white;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
    position: relative;
}

/* Removed penguin image */

.step-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--pudgy-dark-blue);
}

.step-content p {
    color: var(--secondary-text);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
}

/* System Requirements */
.system-requirements {
    margin: 60px 0;
}

.requirements-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.requirement-card {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 36px;
    flex: 1;
    min-width: 280px;
    max-width: 480px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.3s;
}

.requirement-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-hover-shadow);
    border-color: rgba(106, 61, 232, 0.3);
}

.req-icon {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.requirement-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}

.requirement-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.requirement-card li {
    margin-bottom: 12px;
    color: var(--secondary-text);
    font-size: 16px;
    padding-left: 20px;
    position: relative;
}

.requirement-card li::before {
    content: '•';
    color: var(--primary-color);
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
}

/* Testimonials */
.testimonials {
    margin: 60px 0;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.testimonial-card {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 40px 30px;
    width: 100%;
    max-width: 380px;
    border: 1px solid var(--pudgy-light-blue);
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-gradient);
}

/* Removed penguin image from testimonial card */

.testimonial-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
    border-color: var(--pudgy-blue);
}

.testimonial-avatar {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.testimonial-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--pudgy-blue);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
    transition: all 0.3s;
}

.testimonial-card:hover .testimonial-avatar img {
    transform: scale(1.1);
    border-color: var(--pudgy-orange);
}

.testimonial-content {
    text-align: center;
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 22px;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.testimonial-text {
    color: var(--secondary-text);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 60px;
    color: rgba(59, 130, 246, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-author {
    font-weight: 700;
    color: var(--pudgy-dark-blue);
    font-size: 18px;
}

/* FAQ */
.faq {
    margin: 60px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--pudgy-light-blue);
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--card-bg);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
    transition: all 0.3s;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.2);
    border-color: var(--pudgy-blue);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s;
}

.faq-question:hover {
    background-color: rgba(59, 130, 246, 0.05);
}

.faq-item:hover .faq-question::before {
    opacity: 1;
}

.faq-question h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--pudgy-dark-blue);
    padding-left: 5px;
}

.faq-toggle {
    color: var(--pudgy-blue);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    transition: all 0.3s;
    font-size: 18px;
}

.faq-question:hover .faq-toggle {
    transform: rotate(90deg);
    background-color: var(--pudgy-blue);
    color: white;
}

.faq-answer {
    padding: 5px 30px 25px 30px;
    display: none;
}

.faq-answer p {
    color: var(--secondary-text);
    line-height: 1.7;
    font-size: 18px;
    text-align: left;
    font-weight: 500;
}

/* Disclaimer Section */
.disclaimer-section {
    margin: 60px 0 40px;
}

.disclaimer {
    background-color: rgba(59, 130, 246, 0.05);
    border-radius: 16px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid var(--pudgy-light-blue);
    position: relative;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
}

.disclaimer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-gradient);
}

.disclaimer::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-image: url("images/c1a77385-2342-4b67-a428-b7e63536b3e0.png");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.7;
}

.disclaimer h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--pudgy-dark-blue);
}

.disclaimer p {
    color: var(--secondary-text);
    font-size: 16px;
    line-height: 1.8;
    font-weight: 500;
}

/* Language Selector */
.language-selector-container {
    position: relative;
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
    z-index: 10;
}

.language-selector {
    background-color: #111111; /* Fallback for var(--card-bg) */
    background-color: var(--card-bg);
    color: #ffffff; /* Fallback for var(--primary-text) */
    color: var(--primary-text);
    border: 1px solid #333333; /* Fallback for var(--border-color) */
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 14px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    /* Simple arrow for browsers that don't support SVG background */
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAGCAYAAAD68A/GAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAJklEQVQImWNgoBAwMjAwMDCYMDAw/CfGAKyhpAuYGBgYGEgxAACiEAYJ+TGJ9AAAAABJRU5ErkJggg==");
    /* SVG arrow for modern browsers */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 16px;
    padding-right: 30px;
    transition: all 0.3s ease;
    min-width: 100px;
    max-width: 150px;
    text-align: left;
}

.language-selector:hover {
    border-color: #6a3de8; /* Fallback for var(--highlight-color) */
    border-color: var(--highlight-color);
    box-shadow: 0 0 10px rgba(106, 61, 232, 0.2);
}

.language-selector:focus {
    outline: none;
    border-color: #6a3de8; /* Fallback for var(--highlight-color) */
    border-color: var(--highlight-color);
    box-shadow: 0 0 10px rgba(106, 61, 232, 0.3);
}

.language-selector option {
    background-color: #111111; /* Fallback for var(--card-bg) */
    background-color: var(--card-bg);
    color: #ffffff; /* Fallback for var(--primary-text) */
    color: var(--primary-text);
    padding: 8px;
}

/* Responsive */
@media screen and (max-width: 768px) {
    header {
        position: relative;
    }

    .logo {
        margin-left: 15px; /* 增加左边距，为语言选择器留出更多空间 */
    }

    .logo a {
        font-size: 22px; /* 减小字体大小 */
    }

    .logo-img {
        width: 35px; /* 减小logo图片大小 */
        height: 35px;
    }

    .nav-links, .search-cmd, .social-icons {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .language-selector-container {
        position: absolute;
        right: 15px; /* 距离右侧边缘15px */
        top: 50%;
        transform: translateY(-50%);
        z-index: 20; /* 确保显示在最上层 */
    }

    .language-selector {
        min-width: 60px; /* 减小宽度 */
        padding: 4px 20px 4px 8px; /* 减小内边距 */
        font-size: 12px; /* 减小字体大小 */
        background-size: 10px; /* 减小下拉箭头大小 */
        background-position: right 5px center;
        background-color: rgba(255, 255, 255, 0.9);
        border: 1px solid var(--pudgy-blue);
        color: var(--pudgy-dark-blue);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* 添加阴影使其更明显 */
    }

    .hero {
        padding: 60px 0;
        gap: 40px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .primary-btn {
        padding: 12px 24px;
        font-size: 16px;
    }

    .large-btn {
        padding: 14px 28px;
        font-size: 18px;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-box {
        padding: 15px 25px;
        min-width: 140px;
    }

    .stat-number {
        font-size: 24px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-section {
        padding: 40px 20px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .pricing-card {
        max-width: 100%;
        padding: 25px;
    }

    .step {
        min-width: 100%;
        padding: 30px 20px;
    }

    .testimonial-card {
        max-width: 100%;
        padding: 25px;
    }

    .faq-question h3 {
        font-size: 16px;
    }

    .requirement-card {
        min-width: 100%;
        padding: 25px;
    }
}