* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Arial', sans-serif; 
}

body { 
    background-color: #f5f5f5; 
    color: #333; 
}

/* Header */
header { 
    background-color: transparent; 
    position: fixed; 
    width: 100%; 
    top: 0; 
    z-index: 1000; 
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
    background-color: #2a7fba;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 1rem 5%; 
}


.logo img.logo-image {
   background-image:50px;
   height: 50px;
    width: 150px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .logo img.logo-image {
        height: 50px;
    }
}

.nav-links { 
    display: flex; 
    list-style: none; 
}

.nav-links li { 
    margin-left: 2rem; 
}

.nav-links a { 
    text-decoration: none; 
    color: white; 
    font-weight: bold; 
    transition: all 0.3s; 
    font-size: 1.1rem; 
    padding: 0.5rem 0; 
    text-transform: uppercase; 
    letter-spacing: -0.10px; 
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.nav-links a:hover { 
    color: #d4e6f1; 
    transform: translateY(-2px); 
}

.search-box { 
    display: flex; 
    align-items: center; 
}

.search-box input { 
    padding: 0.5rem 1rem; 
    background-color: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3); 
    border-radius: 20px; 
    outline: none; 
    color: white;
}

.search-box input::placeholder {
    color: rgba(255,255,255,0.7);
}


.register-buttons { 
    display: flex; 
    justify-content: flex-end; 
    gap: 1rem; 
    padding: 0.5rem 5%; 
    background-color: transparent; 
    border-top: 1px solid rgba(255,255,255,0.2); 
    position: fixed; 
    top: 64px; 
    width: 100%; 
    z-index: 999; 
    transition: all 0.3s ease;
}

.register-buttons.scrolled {
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.btn-register { 
    padding: 0.5rem 1rem; 
    border-radius: 30px; 
    text-decoration: none; 
    font-weight: bold; 
    transition: all 0.3s; 
    font-size: 1rem; 
}

.btn-register.doctor { 
    background-color: #2a7fba; 
    color: #fff; 
}

.btn-register.doctor:hover { 
    background-color: #1e5f8b; 
    transform: translateY(-2px); 
}

.btn-register.patient { 
    background-color: #ff6b6b; 
    color: #fff; 
}

.btn-register.patient:hover { 
    background-color: #e65c5c; 
    transform: translateY(-2px); 
}
.btn-logout {
    padding: 0.5rem 1rem;
    border-radius: 30px;
    background-color: #ff6b6b;
    color: #fff;
    border: none;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-logout:hover {
    background-color: #e65c5c;
    transform: translateY(-2px);
}
.logged-in-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.oval-text {
    padding: 0.5rem 1.5rem; 
    border-radius: 30px; 
    background-color: #2a7fba; 
    color: #fff; 
    font-weight: bold;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s; 
}

.oval-text:hover {
    background-color: #1e5f8b; 
    transform: translateY(-2px); 
}

.modal-content {
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

.modal-header {
    background-color: #2a7fba;
    color: white;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.modal-footer {
    border-top: none;
}

.form-control, .form-select {
    border-radius: 10px;
}

.btn-primary {
    background-color: #2a7fba;
    border: none;
    border-radius: 10px;
}

.btn-primary:hover {
    background-color: #1e5f8b;
}


.hero { 
    height: 100vh; 
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1579684385127-1ef15d508118?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80'); 
    background-size: cover; 
    background-position: center; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    text-align: center; 
    color: white; 
    padding: 0 2rem; 
    animation: fadeIn 1.5s ease-in-out; 
}

@keyframes fadeIn { 
    from { opacity: 0; } 
    to { opacity: 1; } 
}

.hero h1 { 
    font-size: 3.5rem; 
    margin-bottom: 1rem; 
    animation: slideUp 1s ease-out; 
}

.hero p { 
    font-size: 1.2rem; 
    margin-bottom: 2rem; 
    max-width: 800px; 
    animation: slideUp 1s ease-out 0.3s forwards; 
    opacity: 0; 
}

@keyframes slideUp { 
    from { 
        transform: translateY(50px); 
        opacity: 0; 
    } 
    to { 
        transform: translateY(0); 
        opacity: 1; 
    } 
}

.cta-buttons { 
    display: flex; 
    gap: 1rem; 
    animation: slideUp 1s ease-out 0.6s forwards; 
    opacity: 0; 
}

.btn { 
    padding: 0.8rem 2rem; 
    border-radius: 30px; 
    text-decoration: none; 
    font-weight: bold; 
    transition: all 0.3s; 
}

.btn-primary { 
    background-color: #2a7fba; 
    color: white; 
}

.btn-primary:hover { 
    background-color: #1e5f8b; 
    transform: translateY(-3px); 
    box-shadow: 0 5px 15px rgba(0,0,0,0.2); 
}

.btn-secondary { 
    background-color: transparent; 
    color: white; 
    border: 2px solid white; 
}

.btn-secondary:hover { 
    background-color: rgba(255,255,255,0.1); 
    transform: translateY(-3px); 
    box-shadow: 0 5px 15px rgba(0,0,0,0.2); 
}


.specialties-section {
    padding: 5rem 5%;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.specialties-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: #2a7fba;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 3px;
    background-color: #ff6b6b;
}

.section-subtitle {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.specialty-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    border-top: 4px solid #2a7fba;
    z-index: 1;
}

.specialty-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(42,127,186,0.1) 0%, rgba(255,255,255,0) 100%);
    z-index: -1;
    opacity: 0;
    transition: all 0.3s ease;
}

.specialty-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.specialty-card:hover::before {
    opacity: 1;
}

.specialty-icon {
    font-size: 2.5rem;
    color: #2a7fba;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.specialty-card:hover .specialty-icon {
    transform: scale(1.2);
    color: #ff6b6b;
}

.specialty-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2a7fba;
    transition: all 0.3s ease;
}

.specialty-card:hover h3 {
    color: #1e5f8b;
}

.specialty-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.specialty-card:hover p {
    color: #444;
}

.specialty-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42,127,186,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.specialty-card:hover .specialty-overlay {
    opacity: 1;
}

.specialty-overlay span {
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 10px 20px;
    background: #ff6b6b;
    border-radius: 30px;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.specialty-card:hover .specialty-overlay span {
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.specialty-card {
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
}

.specialty-card:nth-child(1) { animation-delay: 0.1s; }
.specialty-card:nth-child(2) { animation-delay: 0.2s; }
.specialty-card:nth-child(3) { animation-delay: 0.3s; }
.specialty-card:nth-child(4) { animation-delay: 0.4s; }
.specialty-card:nth-child(5) { animation-delay: 0.5s; }
.specialty-card:nth-child(6) { animation-delay: 0.6s; }
.specialty-card:nth-child(7) { animation-delay: 0.7s; }
.specialty-card:nth-child(8) { animation-delay: 0.8s; }
.specialty-card:nth-child(9) { animation-delay: 0.9s; }
.specialty-card:nth-child(10) { animation-delay: 1s; }
.specialty-card:nth-child(11) { animation-delay: 1.1s; }
.specialty-card:nth-child(12) { animation-delay: 1.2s; }

@media (max-width: 768px) {
    .specialties-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .section-subtitle {
        font-size: 1rem;
    }
}


.pharmacy-section {
    position: relative;
    padding: 5rem 5% 7rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
    text-align: center;
    overflow: hidden;
}

.pharmacy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background: linear-gradient(90deg,#1e5f8b , #1e5f8b,#1e5f8b);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.pharmacy-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background: linear-gradient(90deg, #1e5f8b,#1e5f8b,#1e5f8b);
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
}

.pharmacy-container {
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1), transparent 30%),
        linear-gradient(to right, #1e5f8b, #2a7fba);
    display: flex;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
}

.pharmacy-content {
    flex: 1;
    padding: 0 40px;
    text-align: center;
}

.pharmacy-image {
    flex: 1;
    text-align: center;
    animation: floatAnimation 4s ease-in-out infinite;
}

.pharmacy-image img {
    max-width: 80%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@keyframes floatAnimation {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.pharmacy-section h2 {
    font-size: 2.5rem;
    color:#e0e0e0;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.pharmacy-section h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #ff6b6b;
}

.pharmacy-section p {
    font-size: 1.2rem;
    color:blanchedalmond;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.pharmacy-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color:#ff6b6b;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(42, 127, 186, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.pharmacy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(42, 127, 186, 0.4);
    background-color: #1e5f8b;
}

.pharmacy-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: 0.5s;
    z-index: -1;
}

.pharmacy-btn:hover::before {
    left: 100%;
}

.pharmacy-animate {
    animation: fadeInUp 1s ease-out forwards;
}


.doctors-section { 
    padding: 5rem 5%; 
    background-color: #f5f5f5; 
}

.doctors-section h2 { 
    text-align: center; 
    margin-bottom: 2rem; 
    font-size: 50px; 
    color: #2a7fba; 
}

.doctor-carousel { 
    position: relative; 
}

.carousel-track { 
    display: flex; 
    overflow-x: auto; 
    scroll-behavior: smooth; 
    gap: 2rem; 
    padding: 1rem 0; 
    scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar { 
    display: none;
}

.card { 
    background: #fff; 
    border-radius: 10px; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
    flex: 0 0 300px; 
    padding: 1rem; 
    text-align: center; 
}

.card img { 
    width: 80px; 
    height: 80px; 
    border-radius: 50%; 
    object-fit: cover; 
    margin: 0 auto; 
}

.card .name { 
    font-size: 1.2rem; 
    font-weight: bold; 
    margin: 0.5rem 0; 
}

.card .specialty { 
    color: #777; 
    margin-bottom: 0.5rem; 
}

.card .info { 
    display: flex; 
    justify-content: space-around; 
    margin: 0.75rem 0; 
    font-size: 0.9rem; 
    color: #555; 
}

.card .btn-book { 
    display: block; 
    width: 100%; 
    background: #2a7fba; 
    color: #fff; 
    padding: 0.8rem 0; 
    border-radius: 30px; 
    text-decoration: none; 
    font-weight: bold; 
    transition: all 0.3s; 
    margin-top: 1rem; 
}

.card .btn-book:hover { 
    background: #1e5f8b; 
    transform: translateY(-2px); 
}

.carousel-control { 
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%); 
    background: #fff; 
    border: 1px solid #ddd; 
    color: #2a7fba; 
    width: 40px; 
    height: 40px; 
    border-radius: 50%; 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    box-shadow: 0 2px 6px rgba(0,0,0,0.1); 
    z-index: 10;
}

.carousel-control:hover { 
    background: #2a7fba; 
    color: #fff; 
}

.carousel-control.prev { 
    left: 5px; 
}

.carousel-control.next { 
    right: 5px; 
}


.language-selector {
    position: relative;
    margin-left: 1rem;
}

.lang-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color:#f0f0f0;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.lang-btn:hover {
    transform: rotate(15deg);
}

.lang-menu {
    position: absolute;
    top: 2.5rem;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    list-style: none;
    padding: 0.5rem 0;
    display: none;
    z-index: 1001;
    min-width: 100px;
}

.lang-menu li {
    text-align: right;
}

.lang-menu li a {
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.lang-menu li a:hover {
    background-color: #f0f0f0;
}

.language-selector.active .lang-menu {
    display: block;
}


@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }
    .nav-links {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .nav-links li {
        margin: 0.5rem;
    }
    .search-box {
        margin-top: 1rem;
        width: 100%;
    }
    .register-buttons {
        top: 120px;
        justify-content: center;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .cta-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .carousel-control {
        display: none;
    }
}


.chat-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 10000;
}

.chat-icon {
    width: 60px;
    height: 60px;
    background-color:#e65c5c;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.chat-icon:hover {
    transform: scale(1.1);
    background-color: #1e5f8b;
}

.chat-icon:hover::after {
    content: 'Chat CLiniCO';
    position: absolute;
    background: #2a7fba;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
}

.chat-icon i {
    color: white;
    font-size: 24px;
}

.chat-box {
    width: 350px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: none;
    position: absolute;
    bottom: 70px;
    left: 0;
}

.chat-header {
    background-color:#e65c5c;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3 {
    margin: 0;
    font-size: 18px;
}

.close-chat {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

.chat-messages {
    height: 300px;
    overflow-y: auto;
    padding: 15px;
    background-color: #f9f9f9;
}

.message {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.bot-message {
    align-items: flex-start;
}

.user-message {
    align-items: flex-end;
}

.message-content {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 18px;
    margin-bottom: 5px;
}

.bot-message .message-content {
    background-color: #e3f2fd;
    color: #333;
    border-top-left-radius: 0;
}

.user-message .message-content {
    background-color: #2a7fba;
    color: white;
    border-top-right-radius: 0;
}

.message-time {
    font-size: 11px;
    color: #777;
}

.chat-input {
    display: flex;
    padding: 10px;
    background-color: white;
    border-top: 1px solid #eee;
}

.chat-input input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 30px;
    outline: none;
}

.send-button {
    background-color:#e65c5c;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-left: 10px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.options-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.option-button {
    background-color: #e3f2fd;
    border: 1px solid #2a7fba;
    border-radius: 20px;
    padding: 5px 15px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.option-button:hover {
    background-color: #2a7fba;
    color: white;
}

.rating-container {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.rating-star {
    font-size: 24px;
    color: #ddd;
    cursor: pointer;
    margin: 0 3px;
    transition: all 0.3s;
}

.rating-star:hover,
.rating-star.active {
    color: #ffc107;
}

.end-chat-button {
    background-color: #ff6b6b;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 8px 15px;
    margin-top: 10px;
    cursor: pointer;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

select {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #2a7fba;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .chat-box {
        width: 300px;
        left: -130px;
    }
}


.faq-section {
    padding: 5rem 5%;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    border-top: 3px solid #2a7fba;
    border-bottom: 3px solid #2a7fba;
}

.faq-section .section-title {
    text-align: left;
    margin-left: 150px;
    display: block;
    width: 100%;
    padding-left: 100px;
}

.faq-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 27%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #ff6b6b;
}

.faq-content-wrapper {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.faq-image-container {
    flex: 1;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: rotate(-3deg);
    transition: transform 0.3s ease;
    border: 5px solid white;
}

.faq-image:hover {
    transform: rotate(0deg) scale(1.03);
}

.accordion-container {
    flex: 1;
    padding: 1rem;
}

.accordion-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: #2a7fba;
}

.accordion-question {
    width: 100%;
    padding: 18px 20px;
    text-align: left;
    background-color: #f9f9f9;
    border: none;
    outline: solid;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    color: #2a7fba;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.accordion-question:hover {
    background-color: #e3f2fd;
}

.accordion-question i {
    transition: transform 0.3s;
    color: #2a7fba;
    margin-right: 10px;
}

.accordion-item.active .accordion-question i {
    transform: rotate(180deg);
}

.accordion-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: white;
}

.accordion-item.active .accordion-answer {
    max-height: 300px;
}

.accordion-answer p {
    padding: 20px;
    margin: 0;
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .faq-content-wrapper {
        flex-direction: column;
    }
    .faq-image-container {
        padding-bottom: 0;
        margin-bottom: 2rem;
    }
    .accordion-container {
        padding-top: 0;
        width: 100%;
    }
    .accordion-question {
        font-size: 1rem;
        padding: 15px;
    }
    .faq-section {
        padding: 3rem 1rem;
    }
    .faq-image {
        max-width: 80%;
    }
}

.main-footer {
    background-color: #2a7fba;
    color: white;
    padding: 40px 0 20px;
    font-family: 'Arial', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
    padding: 0 15px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #ff6b6b;
}

.footer-section p {
    margin-bottom: 12px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.footer-section p:hover {
    color: #d4e6f1;
    transform: translateX(5px);
}

.social-section {
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.social-icon {
    color: white;
    background-color: rgba(255, 255, 255, 0.2);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: #ff6b6b;
    transform: translateY(-3px);
}

.app-info {
    margin-top: 30px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .footer-section {
        min-width: 50%;
    }
}

@media (max-width: 480px) {
    .footer-section {
        min-width: 100%;
        text-align: center;
    }
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-section p {
        margin-bottom: 8px;
    }
}