* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 41, 59, 0.98) 100%);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1.2rem 0;
    border-bottom: 2px solid rgba(96, 165, 250, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    padding-left: 1rem;
    padding-right: 1rem;
}

.nav-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: nowrap;
}

.nav-logo h2 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
    align-items: center;
    flex: 1 1 auto;
}

.nav-menu a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.2), transparent);
    transition: left 0.5s ease;
}

.nav-menu a:hover::before {
    left: 100%;
}

.nav-menu a:hover {
    color: #60a5fa;
    background: rgba(96, 165, 250, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(96, 165, 250, 0.3);
}

.nav-contact {
    display: flex;
    align-items: center;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid rgba(96,165,250,0.35);
    color: #e2e8f0;
    padding: 0.5rem 0.65rem;
    border-radius: 10px;
    cursor: pointer;
}
.nav-toggle i { font-size: 1rem; }

.nav-phone {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.8rem 1rem;
    border: 2px solid #60a5fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(96, 165, 250, 0.2);
}

.nav-phone:hover {
    background: #60a5fa;
    color: white;
}

.nav-whatsapp {
    color: #25d366;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.8rem 1rem;
    border: 2px solid #25d366;
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-left: 0.8rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.nav-whatsapp:hover {
    background: #25d366;
    color: white;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .navbar .container { padding-left: 0.5rem; padding-right: 0.5rem; }
    .nav-logo h2 { font-size: 1.25rem; }
    .nav-toggle { display: inline-flex; align-items: center; }
    .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(15,23,42,0.98); border-bottom: 1px solid rgba(96,165,250,0.25); box-shadow: 0 10px 25px rgba(0,0,0,0.35); padding: 0.5rem; gap: 0; }
    .nav-menu.open { display: grid; grid-template-columns: 1fr; }
    .nav-menu li { width: 100%; }
    .nav-menu a { display: block; width: 100%; padding: 0.8rem 1rem; border-radius: 8px; }
    .nav-content { justify-content: space-between; gap: 0.3rem; }
    .nav-menu a { font-size: 0.95rem; }
    .nav-contact { flex-shrink: 1; gap: 0.4rem; }
    .nav-phone, .nav-whatsapp { padding: 0.4rem 0.55rem; font-size: 0.95rem; border-width: 1px; }
    .nav-phone i, .nav-whatsapp i { font-size: 0.95rem; }
}

.hero-section {
    width: 100vw;
    height: 100vh;
    position: relative;
    margin-top: 80px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.60) 0%, rgba(30, 41, 59, 0.60) 100%);
    padding: 3.5rem;
    border-radius: 25px;
    color: white;
    max-width: 550px;
    backdrop-filter: blur(0px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
    box-sizing: border-box;
    overflow: hidden;
    word-break: break-word;
    overflow-wrap: anywhere;
    hyphens: auto;
}

.hero-overlay h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-overlay p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-overlay .slogan {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    color: #e2e8f0;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.1rem;
    border-radius: 14px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.2px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    min-height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-btn i {
    font-size: 0.95rem;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.12);
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.3);
}

.hero-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.hero-call {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.hero-whatsapp i {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.22), rgba(18, 140, 126, 0.22));
}

.hero-call i {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.22), rgba(37, 99, 235, 0.22));
}

.feature-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    padding: 1.2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.feature-item span {
    font-weight: 600;
    font-size: 1rem;
}

.feature-item .feature-icon {
    font-size: 0.95rem;
    line-height: 1;
    display: inline-grid;
    place-items: center;
    color: #60a5fa;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(96, 165, 250, 0.18);
    border: 1px solid rgba(96, 165, 250, 0.35);
    filter: drop-shadow(0 1px 1px rgba(0,0,0,0.15));
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    margin-top: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
    font-weight: 800;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #64748b;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #60a5fa, #a78bfa, #60a5fa);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 70px rgba(96, 165, 250, 0.2);
    border-color: rgba(96, 165, 250, 0.3);
}

.service-card h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.feature {
    background: #f1f5f9;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    color: #475569;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Stats Section */
.stats {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.stat-item:hover::after {
    transform: translateX(100%);
}

.stat-item:hover {
    transform: translateY(-15px) scale(1.03);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #e2e8f0;
}

.stat-desc {
    font-size: 1rem;
    color: #cbd5e1;
    line-height: 1.6;
    opacity: 0.9;
}

/* Service Scope Section */
.service-scope {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.scope-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.scope-item {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.scope-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.scope-item h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.scope-item p {
    color: #64748b;
    line-height: 1.8;
    font-size: 1.1rem;
    text-align: justify;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.faq .section-title,
.faq .section-subtitle {
    color: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.1);
}

.faq-icon {
    font-style: normal;
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    margin: 0;
    line-height: 1.6;
    color: #e2e8f0;
    font-size: 1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.testimonials .section-title,
.testimonials .section-subtitle {
    color: #1e293b;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.stars {
    color: #fbbf24;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.testimonial-content p {
    color: #64748b;
    line-height: 1.8;
    font-size: 1.1rem;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    border-top: 1px solid #e2e8f0;
    padding-top: 1.5rem;
}

.author-info h4 {
    color: #1e293b;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.author-info span {
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 500;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #e2e8f0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
}

.phone-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.btn-icon {
    font-size: 1.25rem;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    color: #e2e8f0;
    font-weight: 500;
}

.feature-icon {
    font-size: 1.5rem;
}

/* Responsive Design for CTA */
@media (max-width: 768px) {
    .hero-overlay {
        right: auto;
        left: 50%;
        transform: translate(-50%, -50%);
        width: calc(100% - 2rem);
        max-width: 560px;
        padding: 1.25rem 1rem;
        border-radius: 16px;
    }
    .hero-overlay h1 { font-size: 1.9rem; }
    .hero-overlay .slogan { font-size: 1.05rem; margin-bottom: 1.25rem; }
    .feature-item { padding: 0.9rem; }
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .cta-features {
        gap: 2rem;
    }
}

/* Responsive for Hero Actions */
@media (max-width: 768px) {
    .hero-actions { gap: 0.6rem; }
    .hero-btn { padding: 0.7rem 0.9rem; font-size: 0.95rem; }
    .hero-btn i { font-size: 0.9rem; width: 24px; height: 24px; }
}

/* Extra mobile tuning ≤600px */
@media (max-width: 600px) {
    .container { padding: 0 1rem; }
    .section-title { font-size: 2.2rem; }
    .section-subtitle { font-size: 1.05rem; margin-bottom: 2rem; }
    .services { padding: 3.5rem 0; }
    .services-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .service-card { padding: 1.25rem; border-radius: 16px; }
    .stats { padding: 3.5rem 0; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
    .stat-number { font-size: 2.2rem; }
    .testimonials { padding: 3.5rem 0; }
    .testimonials-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .cta { padding: 3.5rem 0; }
    .cta-content h2 { font-size: 2.1rem; }
    .navbar .container { padding-left: 0.5rem; padding-right: 0.5rem; }
    .nav-logo h2 { font-size: 1.1rem; }
    .nav-menu { gap: 0.4rem; }
    .nav-menu a { padding: 0.3rem 0.5rem; font-size: 0.8rem; }
    .nav-phone, .nav-whatsapp { padding: 0.35rem 0.5rem; font-size: 0.9rem; }
}

/* Very small devices ≤400px */
@media (max-width: 400px) {
    .nav-logo h2 { font-size: 1rem; }
    .nav-menu { gap: 0.25rem; }
    .nav-menu a { padding: 0.25rem 0.4rem; font-size: 0.75rem; }
    .nav-phone, .nav-whatsapp { padding: 0.3rem 0.45rem; font-size: 0.85rem; }
    .hero-overlay h1 { font-size: 1.6rem; }
    .hero-overlay .slogan { font-size: 0.95rem; }
    .feature-item { padding: 0.75rem; }
    .feature-item .feature-icon { width: 22px; height: 22px; font-size: 0.8rem; }
    .feature-item span { font-size: 0.9rem; }
    .hero-actions { gap: 0.5rem; }
    .hero-btn { padding: 0.6rem 0.8rem; font-size: 0.9rem; }
    .hero-btn i { width: 22px; height: 22px; font-size: 0.85rem; }
    .stats-grid { grid-template-columns: 1fr; }
}

/* Footer Section */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 4rem 0 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #60a5fa;
    font-weight: 700;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #e2e8f0;
    font-weight: 600;
}

.footer-section p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #cbd5e1;
    font-size: 0.95rem;
}

.contact-icon {
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #60a5fa;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding: 2rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-bottom-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #60a5fa;
}

.separator {
    color: #475569;
    font-size: 0.8rem;
}

/* Responsive Design for Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}
