.btn-large {
    padding: 20px 50px;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
}

/* FAQ Section */
#faq {
    padding: 100px 0;
    background: rgba(102, 126, 234, 0.02);
}

#faq h2 {
    text-align: center;
    font-size: 3em;
    margin-bottom: 60px;
    font-weight: 800;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

body.light-mode .faq-item {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.1);
}

.faq-item:hover {
    border-color: rgba(102, 126, 234, 0.3);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #667eea;
}

.faq-icon {
    font-size: 1.5em;
    color: #667eea;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

body.light-mode .faq-answer p {
    color: rgba(0, 0, 0, 0.7);
}

/* Back to Top Button */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.5em;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
}

/* Booking Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: #0a0a0a;
    margin: 5% auto;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: slideUp 0.3s ease;
    backdrop-filter: blur(20px);
}

body.light-mode .modal-content {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.1);
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-content h2 {
    margin-bottom: 30px;
    font-size: 2em;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.close {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 2em;
    font-weight: 300;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

body.light-mode .close {
    color: rgba(0, 0, 0, 0.6);
}

.close:hover {
    color: #667eea;
    transform: rotate(90deg);
}

#booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#booking-form input,
#booking-form select,
#booking-form textarea {
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1em;
    transition: all 0.3s ease;
}

#booking-form select option {
    background: #1a1a1a;
    color: #fff;
    padding: 10px;
}

body.light-mode #booking-form input,
body.light-mode #booking-form select,
body.light-mode #booking-form textarea {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    color: #1a1a1a;
}

body.light-mode #booking-form select option {
    background: #fff;
    color: #1a1a1a;
}

#booking-form input::placeholder,
#booking-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

body.light-mode #booking-form input::placeholder,
body.light-mode #booking-form textarea::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

#booking-form input:focus,
#booking-form select:focus,
#booking-form textarea:focus {
    outline: none;
    border-color: rgba(102, 126, 234, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.2);
}

#booking-form select {
    cursor: pointer;
}

#booking-form .btn {
    margin-top: 10px;
}* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', sans-serif;
    background: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
    transition: background 0.3s ease, color 0.3s ease;
}

/* Light Mode */
body.light-mode {
    background: #f5f5f5;
    color: #1a1a1a;
}

body.light-mode .hero::before,
body.light-mode .floating-shapes {
    opacity: 0.3;
}

body.light-mode header {
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-mode header nav a,
body.light-mode header h1 {
    color: #1a1a1a;
}

body.light-mode .card,
body.light-mode .testimonial-card,
body.light-mode #contact input,
body.light-mode #contact textarea {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.1);
    color: #1a1a1a;
}

body.light-mode .card p,
body.light-mode .stat-label,
body.light-mode #about p,
body.light-mode .hero p {
    color: rgba(0, 0, 0, 0.7);
}

body.light-mode footer {
    background: rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-mode footer p {
    color: rgba(0, 0, 0, 0.5);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 15px 0;
    background: rgba(10, 10, 10, 0.95);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-size: 1.5em;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* Hero Logo */
.hero-logo {
    width: 96px;
    height: 96px;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease;
    filter: drop-shadow(0 10px 30px rgba(102, 126, 234, 0.3));
}

header nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

header nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95em;
    transition: all 0.3s ease;
    position: relative;
}

header nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

header nav a:hover::after {
    width: 100%;
}

/* Schedule Button in Header */
.schedule-btn {
    padding: 10px 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95em;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.schedule-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.schedule-btn:hover::before {
    left: 100%;
}

.schedule-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

/* Header Controls */
.header-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

#language-selector {
    padding: 8px 12px;
    background: rgba(102, 126, 234, 0.2);
    border: 1px solid rgba(102, 126, 234, 0.4);
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

#language-selector option {
    background: #1a1a1a;
    color: #fff;
    padding: 10px;
}

body.light-mode #language-selector {
    background: rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
    color: #1a1a1a;
}

body.light-mode #language-selector option {
    background: #fff;
    color: #1a1a1a;
}

#language-selector:hover {
    background: rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.6);
}

#theme-toggle {
    background: rgba(102, 126, 234, 0.2);
    border: 1px solid rgba(102, 126, 234, 0.4);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2em;
}

body.light-mode #theme-toggle {
    background: rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

#theme-toggle:hover {
    transform: rotate(180deg);
    background: rgba(102, 126, 234, 0.3);
}

body:not(.light-mode) #theme-toggle .sun {
    display: none;
}

body.light-mode #theme-toggle .moon {
    display: none;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
    border-radius: 3px;
}

body.light-mode .hamburger span {
    background: #1a1a1a;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(102, 126, 234, 0.15) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.hero h2 {
    font-size: clamp(2.5em, 8vw, 5em);
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff 0%, #667eea 50%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero p {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.7);
    animation: fadeInUp 0.8s ease 0.2s backwards;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05em;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    animation: fadeInUp 0.8s ease 0.4s backwards;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', sans-serif;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

/* Services */
#services {
    padding: 100px 0;
    position: relative;
}

#services h2 {
    text-align: center;
    font-size: 3em;
    margin-bottom: 70px;
    font-weight: 800;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-10px);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
    background: linear-gradient(145deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.card h3 {
    font-size: 1.6em;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 1.05em;
}

/* Stats Section */
#stats {
    padding: 80px 0;
    background: rgba(102, 126, 234, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3.5em;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* About Section */
#about {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(180deg, transparent 0%, rgba(102, 126, 234, 0.05) 100%);
}

#about h2 {
    font-size: 3em;
    margin-bottom: 30px;
    font-weight: 800;
}

#about p {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Testimonials Section */
#testimonials {
    padding: 100px 0;
    text-align: center;
}

#testimonials h2 {
    font-size: 3em;
    margin-bottom: 60px;
    font-weight: 800;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto 40px;
    min-height: 300px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    pointer-events: none;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    padding: 50px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.testimonial-card.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}

.stars {
    font-size: 1.5em;
    color: #fbbf24;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 1.2em;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-style: italic;
}

.client-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.client-info strong {
    font-size: 1.1em;
    color: #fff;
}

.client-info span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95em;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width: 30px;
    border-radius: 6px;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* CTA Section */
#cta {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#cta h2 {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: 800;
}

#cta p {
    font-size: 1.3em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.btn-large {
    padding: 20px 50px;
    font-size: 1.1em;
}

/* Contact Section */
#contact {
    padding: 100px 0;
    text-align: center;
}

#contact h2 {
    font-size: 3em;
    margin-bottom: 50px;
    font-weight: 800;
}

#contact form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

#contact input,
#contact textarea {
    padding: 18px 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1em;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

#contact input::placeholder,
#contact textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

#contact input:focus,
#contact textarea:focus {
    outline: none;
    border-color: rgba(102, 126, 234, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.2);
}

#contact button {
    padding: 18px;
    border: none;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    cursor: pointer;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05em;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

#contact button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

#contact button:hover::before {
    left: 100%;
}

#contact button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    padding: 40px 0;
}

footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95em;
}

/* Floating elements */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    animation: float 20s infinite ease-in-out;
}

.shape:nth-child(1) {
    width: 400px;
    height: 400px;
    background: #667eea;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 300px;
    height: 300px;
    background: #764ba2;
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.shape:nth-child(3) {
    width: 350px;
    height: 350px;
    background: #667eea;
    bottom: 10%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-30px, 30px) rotate(240deg); }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    header h1 {
        font-size: 1.2em;
    }

    .hero-logo {
        width: 100px;
    }

    header nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 50px 20px;
        transition: left 0.3s ease;
        gap: 30px;
        backdrop-filter: blur(20px);
    }

    body.light-mode header nav {
        background: rgba(255, 255, 255, 0.98);
    }

    header nav.active {
        left: 0;
    }

    header nav a {
        font-size: 1.2em;
        width: 100%;
        text-align: center;
        padding: 15px 0;
    }

    .schedule-btn {
        width: 80%;
        padding: 15px 25px;
    }

    .header-controls {
        flex-direction: column;
        width: 80%;
        gap: 15px;
    }

    #language-selector,
    #theme-toggle {
        width: 100%;
    }

    #theme-toggle {
        border-radius: 12px;
        height: 45px;
    }

    header nav a {
        margin-left: 0;
        font-size: 0.9em;
    }

    .hero h2 {
        font-size: 2.5em;
    }

    #services h2,
    #about h2,
    #contact h2,
    #testimonials h2,
    #cta h2,
    #faq h2 {
        font-size: 2em;
    }

    .stat-number {
        font-size: 2.5em;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .modal-content {
        width: 95%;
        padding: 30px 20px;
        margin: 20% auto;
    }

    #back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .faq-question {
        font-size: 1em;
        padding: 20px;
    }

    .faq-answer p {
        padding: 0 20px 20px;
    }
}