/* Import base styles from index.css */
@import url('index.css');

/* Navbar brand styling to match index.html */
#fib {
    color: #2563eb;
    font-weight: 700;
}

#tech {
    color: #002fff;
    font-weight: 700;
}

#Fibnet-text {
    text-decoration: none;
    transition: all 0.3s ease;
}

#Fibnet-text:hover #fib,
#Fibnet-text:hover #tech {
    color: #1d4ed8;
}

/* Service Page Specific Styles */

/* Hero Section */
.service-hero {
    height: 65vh;
    width: 100vw;
    position: relative;
    margin: 0;
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: white;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.3), transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 119, 198, 0.3), transparent 50%),
                radial-gradient(circle at 50% 20%, rgba(255, 219, 98, 0.2), transparent 50%);
    animation: floatAnimation 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes floatAnimation {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(1deg); }
    66% { transform: translateY(20px) rotate(-1deg); }
}

.service-hero .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.service-hero .hero-content {
    color: #ffffff;
    position: relative;
    z-index: 2;
    filter: brightness(1.2);
    text-align: left;
    animation: fadeInUp 1.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #ffffff;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-buttons .btn-outline-primary {
    background-color: #2563eb !important;
    border-color: #2563eb !important;
    color: white !important;
}

.hero-buttons .btn-outline-primary:hover {
    background-color: #1d4ed8 !important;
    border-color: #1d4ed8 !important;
    color: white !important;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    object-fit: cover;
    background: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2c3e50;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #667eea);
    border-radius: 2px;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.feature-icon svg {
    filter: drop-shadow(0 4px 8px rgba(37, 99, 235, 0.3));
}

.feature-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.feature-card p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Connection Section */
.connection-section {
    padding: 80px 0;
    background: white;
}

.connection-images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.connection-images img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    object-fit: cover;
    background: #f8f9fa;
}

.connection-images img:hover {
    transform: scale(1.05);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #495057;
    font-size: 1.05rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
    font-size: 1.2rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.accordion {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.accordion-item {
    border: none;
    border-bottom: 1px solid #e9ecef;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-button {
    background: white;
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.25rem 1.5rem;
    border: none;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    filter: brightness(0);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    padding: 1.5rem;
    color: #6c757d;
    line-height: 1.6;
    font-size: 1rem;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #2563eb 0%, #667eea 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-light {
    background: white;
    color: #2563eb;
    border: 2px solid white;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: #2563eb;
    transform: translateY(-2px);
}

/* Responsive Design */

/* Tablet View (768px - 991px) */
@media (max-width: 991px) {
    .service-hero {
        height: 70vh;
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.8rem;
    }
    
    .hero-image img {
        max-height: 250px;
    }
    
    .hero-buttons {
        gap: 0.8rem;
    }
    
    .hero-image img {
        max-height: 350px;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .connection-images {
        margin-bottom: 2rem;
    }
    
    .enhanced-service-card {
        margin-bottom: 1.5rem;
    }
}

/* Mobile View (576px - 767px) */
@media (max-width: 767px) {
    .service-hero {
        height: 73.5vh !important;
        padding: 60px 40px;
        min-height: 430px;
    }
    
    .hero-title {
        font-size: 3rem !important;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
    
    .hero-image img {
        max-height: 150px;
        border-radius: 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .why-fiber-section,
    .connection-section,
    .faq-section,
    .cta-banner {
        padding: 50px 20px;
    }
    
    .cta-title {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-light,
    .btn-outline-light {
        width: 100%;
        max-width: 280px;
    }
    
    .enhanced-service-card {
        margin-bottom: 1.5rem;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1rem;
    }
    
    .feature-item .feature-icon {
        margin: 0 auto;
    }
}

/* Small Mobile View (575px and below) */
@media (max-width: 575px) {
    .service-hero {
        height: 55vh;
        padding: 50px 20px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-buttons .btn {
        font-size: 0.9rem;
        padding: 10px 16px;
    }
    
    .hero-image img {
        max-height: 220px;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .why-fiber-section,
    .connection-section,
    .faq-section,
    .cta-banner {
        padding: 40px 15px;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .cta-subtitle {
        font-size: 0.95rem;
    }
    
    .enhanced-service-card {
        margin-bottom: 1rem;
    }
    
    .service-content {
        padding: 1rem;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .service-description {
        font-size: 0.85rem;
    }
    
    .service-features .feature-list li {
        font-size: 0.8rem;
        padding: 0.3rem 0;
        padding-left: 1.2rem;
    }
    
    .service-btn {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-card h4 {
        font-size: 1.1rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .accordion-button {
        font-size: 0.95rem;
        padding: 1rem;
    }
    
    .accordion-body {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .feature-card {
        padding: 1.5rem;
    }
    
    .accordion-button {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .accordion-body {
        padding: 1rem;
        font-size: 0.95rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Active Navigation State */
.navbar-nav .nav-link.active {
color: #2563eb !important;
font-weight: 600;
}

/* Enhanced Our Services Section Styles */
.our-services-section {
padding: 80px 0;
background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
position: relative;
}

.our-services-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(37,99,235,0.05)" stroke-width="0.5"/><circle cx="50" cy="50" r="30" fill="none" stroke="rgba(37,99,235,0.05)" stroke-width="0.5"/></svg>') repeat;
background-size: 100px 100px;
opacity: 0.3;
}

.our-services-section .container {
position: relative;
z-index: 2;
}

.our-services-section .section-title {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 3rem;
color: #2c3e50;
position: relative;
}

.our-services-section .section-title::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 4px;
background: linear-gradient(90deg, #2563eb, #667eea);
border-radius: 2px;
}

.enhanced-service-card {
background: white;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 15px 35px rgba(0,0,0,0.1);
transition: transform 0.4s ease, box-shadow 0.4s ease;
height: 100%;
border: 1px solid rgba(37, 99, 235, 0.1);
position: relative;
}

/* Red border for second stack of services */
#service-4,
#service-5,
#service-6 {
border: 2px solid #dc2626;
}

.enhanced-service-card:hover {
transform: translateY(-15px);
box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.service-image-container {
position: relative;
height: 200px;
overflow: hidden;
}

.service-img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.4s ease;
}

.enhanced-service-card:hover .service-img {
transform: scale(1.1);
}

.service-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgba(37, 99, 235, 0.8), rgba(102, 126, 234, 0.8));
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: opacity 0.3s ease;
}

.enhanced-service-card:hover .service-overlay {
opacity: 1;
}

.service-overlay .service-icon {
transform: translateY(20px);
transition: transform 0.3s ease;
}

.enhanced-service-card:hover .service-overlay .service-icon {
transform: translateY(0);
}

.service-content {
padding: 2rem;
}

.service-title {
font-size: 1.5rem;
font-weight: 700;
color: #2c3e50;
margin-bottom: 1rem;
text-align: center;
letter-spacing: 1px;
}

.service-divider {
width: 50px;
height: 3px;
background: linear-gradient(90deg, #2563eb, #667eea);
margin: 0 auto 1.5rem auto;
border-radius: 2px;
}

.service-description {
color: #6c757d;
line-height: 1.6;
margin-bottom: 1.5rem;
text-align: center;
font-size: 0.95rem;
}

.service-features {
margin-bottom: 1.5rem;
}

.service-features .feature-list {
list-style: none;
padding: 0;
margin: 0;
text-align: left;
}

.service-features .feature-list li {
padding: 0.5rem 0;
padding-left: 1.5rem;
position: relative;
color: #495057;
font-size: 0.9rem;
}

.service-features .feature-list li::before {
content: '✓';
position: absolute;
left: 0;
color: #2563eb;
font-weight: bold;
font-size: 1rem;
}

.service-btn {
width: 100%;
padding: 0.75rem 1.5rem;
background: linear-gradient(135deg, #2563eb, #667eea);
color: white;
border: none;
border-radius: 50px;
font-weight: 600;
font-size: 0.9rem;
cursor: pointer;
transition: all 0.3s ease;
text-transform: uppercase;
letter-spacing: 1px;
position: relative;
overflow: hidden;
}

.service-btn::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(135deg, #667eea, #2563eb);
transition: left 0.3s ease;
}

.service-btn:hover::before {
left: 0;
}

.service-btn span {
position: relative;
z-index: 1;
}

.service-btn:hover {
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

#more-service-button {
background: linear-gradient(135deg, #2563eb, #667eea);
border: none;
border-radius: 50px;
padding: 1rem 2.5rem;
font-weight: 600;
color: white;
transition: all 0.3s ease;
text-transform: uppercase;
letter-spacing: 1px;
box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

#more-service-button:hover {
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
background: linear-gradient(135deg, #1d4ed8, #5a67d8);
}

#more-service-button a {
color: white !important;
text-decoration: none !important;
font-weight: bold;
}

/* Why Choose Fibnet Section Styles */
.why-fibnet-section {
padding: 80px 0;
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
position: relative;
    position: relative;
}

.why-fibnet-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(102, 126, 234, 0.05));
    z-index: 1;
}

.why-fibnet-section .container {
    position: relative;
    z-index: 2;
}

.why-fibnet-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2c3e50;
    position: relative;
}

.why-fibnet-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #667eea);
    border-radius: 2px;
}

.fibnet-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.feature-item .feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb, #667eea);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

.feature-item .feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-content h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.feature-content p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.fibnet-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.fibnet-image img:hover {
    transform: scale(1.05);
}

/* Responsive Design for New Sections */
@media (max-width: 992px) {
    .our-services-section .section-title,
    .why-fibnet-section .section-title {
        font-size: 2rem;
    }
    
    .service-card h4 {
        font-size: 1.2rem;
    }
    
    .feature-content h5 {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .our-services-section,
    .why-fibnet-section {
        padding: 60px 0;
    }
    
    .our-services-section .section-title,
    .why-fibnet-section .section-title {
        font-size: 1.75rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-item {
        padding: 1rem;
        gap: 1rem;
    }
    
    .feature-item .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-item .feature-icon svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 576px) {
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .service-card h4 {
        font-size: 1.1rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-item .feature-icon {
        margin: 0 auto 1rem auto;
    }
    
    /* Additional mobile optimizations */
    .section-title {
        font-size: 1.8rem;
    }
    
    .enhanced-service-card {
        margin-bottom: 1rem;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .service-description {
        font-size: 0.85rem;
    }
    
    .service-features .feature-list li {
        font-size: 0.8rem;
        padding: 0.3rem 0;
        padding-left: 1.2rem;
    }
    
    .service-btn {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-card h4 {
        font-size: 1.1rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .accordion-button {
        font-size: 0.95rem;
        padding: 1rem;
    }
    
    .accordion-body {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

/* Extra Small Screens (480px and below) */
@media (max-width: 480px) {
    .service-hero {
        height: 50vh;
        padding: 40px 15px;
    }
    
    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-buttons .btn {
        font-size: 0.9rem;
        padding: 10px 16px;
    }
    
    .hero-image img {
        max-height: 180px;
        border-radius: 12px;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .our-services-section,
    .why-fibnet-section,
    .connection-section,
    .faq-section,
    .cta-banner {
        padding: 40px 15px;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .cta-subtitle {
        font-size: 0.95rem;
    }
    
    .enhanced-service-card {
        margin-bottom: 1rem;
    }
    
    .service-content {
        padding: 1rem;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .service-description {
        font-size: 0.85rem;
    }
    
    .service-features .feature-list li {
        font-size: 0.8rem;
        padding: 0.3rem 0;
        padding-left: 1.2rem;
    }
    
    .service-btn {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-card h4 {
        font-size: 1.1rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .accordion-button {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .accordion-body {
        padding: 1rem;
        font-size: 0.95rem;
    }
}

/* Removed duplicate footer styles to use the consistent footer from index.css */