/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
    color: #cccccc;
}

a {
    color: #00f7d6;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #00c4a8;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    background: none;
}

.btn-primary {
    background: linear-gradient(135deg, #00f7d6, #00c4a8);
    color: #000 !important;
    border-color: #00f7d6;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #00c4a8, #00a18a);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 247, 214, 0.3);
}

.btn-secondary {
    background-color: #333;
    color: #fff;
    border-color: #555;
}

.btn-secondary:hover {
    background-color: #555;
    border-color: #777;
}

.btn-outline {
    color: #00f7d6;
    border-color: #00f7d6;
}

.btn-outline:hover {
    background-color: #00f7d6;
    color: #000;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 247, 214, 0.2);
}

.navbar {
    padding: 1rem;
}

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

.nav-logo .logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #00f7d6;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00f7d6, #00c4a8);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #000000, #1a1a1a);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00f7d6, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #cccccc;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00f7d6, #00c4a8);
    border-radius: 2px;
}

.section-icon {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 0 20px rgba(0, 247, 214, 0.5));
}

/* About Section */
.about {
    background: linear-gradient(135deg, #111111, #222222);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-icon {
    text-align: center;
}

/* Advantages Section */
.advantages {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.advantage-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(0, 247, 214, 0.2);
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 247, 214, 0.2);
    border-color: #00f7d6;
}

.advantage-icon {
    margin-bottom: 1.5rem;
}

.advantage-icon img {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 0 15px rgba(0, 247, 214, 0.6));
}

.advantage-card h3 {
    color: #00f7d6;
    margin-bottom: 1rem;
}

/* Services Section */
.services {
    background: linear-gradient(135deg, #111111, #222222);
}

.services-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border: 1px solid rgba(0, 247, 214, 0.2);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-header {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: rgba(0, 247, 214, 0.1);
}

.accordion-header h3 {
    margin: 0;
    color: #fff;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating img {
    width: 16px;
    height: 16px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.8));
}

.rating span {
    color: #00f7d6;
    font-weight: 600;
}

.accordion-icon {
    font-size: 1.5rem;
    color: #00f7d6;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.accordion-content.active {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
}

.price-info {
    background: rgba(0, 247, 214, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 247, 214, 0.3);
    margin-top: 1rem;
}

.price-info strong {
    color: #00f7d6;
}

/* Offers Section */
.offers {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.offer-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border: 2px solid rgba(0, 247, 214, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 247, 214, 0.2);
}

.offer-card.featured {
    border-color: #00f7d6;
    box-shadow: 0 15px 30px rgba(0, 247, 214, 0.3);
}

.offer-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00f7d6, #00c4a8);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.offer-header {
    margin-bottom: 2rem;
}

.offer-header h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    color: #00f7d6;
}

.amount {
    font-size: 3rem;
    font-weight: bold;
    color: #00f7d6;
}

.period {
    font-size: 1rem;
    color: #ccc;
}

.offer-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.offer-features li {
    padding: 0.5rem 0;
    color: #ccc;
}

.offer-btn {
    width: 100%;
}

/* Reviews Section */
.reviews {
    background: linear-gradient(135deg, #111111, #222222);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.review-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 247, 214, 0.2);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 247, 214, 0.2);
}

.review-rating {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.review-rating img {
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.8));
}

.review-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.review-author strong {
    color: #00f7d6;
}

.review-author span {
    color: #999;
}

/* Achievements Section */
.achievements {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.achievement-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(0, 247, 214, 0.2);
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 247, 214, 0.2);
    border-color: #00f7d6;
}

.achievement-icon {
    margin-bottom: 1rem;
}

.achievement-icon img {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 0 15px rgba(0, 247, 214, 0.6));
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #00f7d6;
    margin-bottom: 0.5rem;
}

.achievement-label {
    color: #ccc;
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #111111, #222222);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 10px;
    border: 1px solid rgba(0, 247, 214, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: #00f7d6;
    box-shadow: 0 10px 20px rgba(0, 247, 214, 0.2);
}

.contact-icon img {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 10px rgba(0, 247, 214, 0.6));
}

.contact-details h3 {
    margin: 0 0 0.5rem 0;
    color: #00f7d6;
}

.contact-details p {
    margin: 0;
    color: #ccc;
}

.contact-form {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 247, 214, 0.2);
}

.contact-form h3 {
    color: #fff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #00f7d6;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(0, 247, 214, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00f7d6;
    box-shadow: 0 0 10px rgba(0, 247, 214, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #000000, #111111);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(0, 247, 214, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #00f7d6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #00f7d6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 247, 214, 0.2);
}

.footer-bottom p {
    color: #999;
    margin: 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 1.5rem;
    border-top: 2px solid #00f7d6;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text h3 {
    color: #00f7d6;
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: #ccc;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1002;
}

.cookie-modal.show {
    display: flex;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border: 2px solid #00f7d6;
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 247, 214, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    color: #00f7d6;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #00f7d6;
}

.modal-body {
    padding: 1.5rem;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 247, 214, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(0, 247, 214, 0.2);
}

.switch {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 0.5rem;
}

.switch input {
    display: none;
}

.slider {
    position: relative;
    width: 50px;
    height: 24px;
    background-color: #333;
    border-radius: 24px;
    transition: background-color 0.3s ease;
    margin-right: 1rem;
}

.slider::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.switch input:checked + .slider {
    background-color: #00f7d6;
}

.switch input:checked + .slider::before {
    transform: translateX(26px);
}

.switch input:disabled + .slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.switch .label {
    color: #fff;
    font-weight: 600;
}

.cookie-category p {
    color: #ccc;
    margin: 0;
    font-size: 0.9rem;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(0, 247, 214, 0.2);
    text-align: center;
}

/* Legal Pages */
.legal-page {
    padding: 6rem 0 3rem;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    min-height: 100vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 247, 214, 0.2);
}

.legal-content h1 {
    color: #00f7d6;
    margin-bottom: 1rem;
    text-align: center;
}

.legal-content h2 {
    color: #00f7d6;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-content h3 {
    color: #fff;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: #ccc;
}

.legal-content address {
    background: rgba(0, 247, 214, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 247, 214, 0.2);
    font-style: normal;
    color: #ccc;
}

.last-updated {
    text-align: center;
    color: #999;
    font-style: italic;
    margin-bottom: 2rem;
}

/* Cookie Table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: rgba(0, 247, 214, 0.05);
    border: 1px solid rgba(0, 247, 214, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(0, 247, 214, 0.1);
}

.cookie-table th {
    background: rgba(0, 247, 214, 0.2);
    color: #00f7d6;
    font-weight: 600;
}

.cookie-table td {
    color: #ccc;
}

.cookie-settings-button {
    text-align: center;
    margin: 2rem 0;
}

/* Thank You Page */
.thank-you {
    padding: 6rem 0 3rem;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 247, 214, 0.2);
}

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-title {
    color: #00f7d6;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.thank-you-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ccc;
}

.thank-you-personal {
    background: rgba(0, 247, 214, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 247, 214, 0.2);
    margin-bottom: 2rem;
    color: #00f7d6;
    font-weight: 600;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.thank-you-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 247, 214, 0.2);
    text-align: left;
}

.thank-you-info h3 {
    color: #00f7d6;
    margin-bottom: 1rem;
}

.thank-you-info ul {
    list-style: none;
    padding: 0;
}

.thank-you-info li {
    padding: 0.5rem 0;
    color: #ccc;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        border-top: 1px solid rgba(0, 247, 214, 0.2);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .legal-content {
        padding: 2rem;
        margin: 0 1rem;
    }

    .cookie-table {
        font-size: 0.9rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.8rem;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }

    .achievement-number {
        font-size: 2rem;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .legal-content {
        padding: 1.5rem;
    }

    .thank-you-content {
        padding: 2rem;
        margin: 0 1rem;
    }

    .advantages-grid,
    .reviews-grid, [class*="-grid"] {
        grid-template-columns: 1fr;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    body {
        word-break: break-word;
    }
    .accordion-header {
        flex-direction: column;
        row-gap: 10px;
        text-align: center;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Smooth scrolling for all browsers */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 2px solid #00f7d6;
    outline-offset: 2px;
}
