
     * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: sora, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

 .menu-button {
    appearance: none;
    background: none;
    border: none;
    outline: none;
    padding: 0.5rem 1rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: #ff5722;
    border-radius: 6px;
    color: #fff;
}

.button--text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: #f0f0f0;
}
.dropdown-menu--item {
    position: relative;
    top: -13px;
}

.avatars {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.button--icon svg {
    transition: transform 0.3s ease;
}

.menu-button[aria-expanded="true"] .chevron-down {
    transform: rotate(180deg);
}

.expandable {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.menu-button[aria-expanded="true"] + .expandable {
    max-height: 100px;
    opacity: 1;
}

.sub-menu {
    background-color: #29293d;
    border-radius: 6px;
    padding: 4px 1rem;
    margin-top: 0.5rem;
    position: absolute;
    width: 100%;
}

.dropdown-link {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 0.3rem 0;
}

.dropdown-link:hover {
    text-decoration: underline;
}

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 4rem;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background: rgba(0, 0, 0, 0.9);
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: white;
            text-decoration: none;
            z-index: 1001;
        }

        .logo span {
            color: #FF5722;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
        }

        .login-btn {
            background-color: #FF5722;
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 2rem;
            text-decoration: none;
            font-weight: bold;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 4px;
            cursor: pointer;
            z-index: 1001;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background-color: white;
            transition: all 0.3s ease;
        }

        .hero {
            min-height: 100vh;
            /*background-image: url('/api/placeholder/1920/1080');*/
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            align-items: center;
            padding: 4rem;
        }

        .hero-content {
            max-width: 600px;
            top: 0px;
            position: relative;
            z-index: 2;
            background: rgba(0, 0, 0, 0.7);
            padding: 2rem;
            border-radius: 1rem;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .highlight {
            color: #FF5722;
        }

        .hero p {
            font-size: 1rem;
            margin-bottom: 2rem;
            line-height: 1.6;
            color: #ccc;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .get-started {
            background-color: #FF5722;
            color: white;
            padding: 1rem 2rem;
            border-radius: 2rem;
            text-decoration: none;
            font-weight: bold;
        }

        .learn-more {
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            padding: 1rem 2rem;
            border-radius: 2rem;
            text-decoration: none;
            font-weight: bold;
        }

        .search-bar {
            position: relative;
            max-width: 800px;
            margin: 0rem auto 0;
            z-index: 3;
            padding: 26px 1rem;
        }

        .search-container {
            display: flex;
            background: white;
            padding: 1rem;
            border-radius: 1rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .search-input {
            flex: 1;
            border: none;
            outline: none;
            font-size: 1.2rem;
            padding: 0 1rem;
        }

        .search-btn {
            background-color: #FF5722;
            color: white;
            padding: 1rem 2rem;
            border-radius: 8px;
            border: none;
            font-weight: bold;
            cursor: pointer;
            white-space: nowrap;
        }

        .members {
            position: absolute;
            top: 2rem;
            right: -33rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .member-avatars {
            display: flex;
            margin-right: 1rem;
        }

        .member-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid white;
            margin-left: -10px;
        }

        .members-count {
            font-size: 1.5rem;
            font-weight: bold;
        }

        .members-text {
            font-size: 0.9rem;
            color: #ccc;
        }

        /* Mobile Responsive Styles */
        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 3rem;
            }

            .members {
                top: 5rem;
                right: 2rem;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 1rem 2rem;
            }

            .menu-toggle {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 80%;
                max-width: 300px;
                background: rgba(0, 0, 0, 0.95);
                flex-direction: column;
                padding: 5rem 2rem;
                transition: right 0.3s ease;
            }

            .nav-links.active {
                right: 0;
            }

            .hero {
                padding: 2rem;
                align-items: flex-start;
                padding-top: 6rem;
                display: none;
            }

            .hero-content {
                max-width: 100%;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .members {
                position: relative;
                top: auto;
                right: auto;
                margin-bottom: 2rem;
            }

            .search-container {
                flex-direction: column;
                gap: 1rem;
                padding: 0.75rem;
                margin-top: 140px
                
            }

            .search-input {
                padding: 0.75rem;
                font-size: 1rem;
            }

            .search-btn {
                width: 100%;
                padding: 0.75rem;
            }

            .cta-buttons {
                flex-direction: column;
                width: 100%;
            }

            .get-started, .learn-more {
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
                display: none;
            }

            .member-avatar {
                width: 30px;
                height: 30px;
            }

            .members-count {
                font-size: 1.2rem;
            }

            .members-text {
                font-size: 0.8rem;
            }
        }

/*
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'sora', sans-serif;
}*/

.justify
{
    text-align: justify;
}
.top-questions {
    padding: 5rem 5%;
    background-color: #fff;
}

.content-wrapper {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
}

.text-content {
    flex: 1;
}

.section-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #000;
}
.bodyback {
    color: #f3f3f3;
}
.highlight {
    color: #FF5722;
}
.colorw{
    color: #fff
}
.description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 600px;
}

.statsgrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.statcard {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 10px 10px 10px 10px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.plus {
    color: #FF5722;
}

.stat-label {
    color: #666;
    font-size: 1rem;
}

.image-content {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.book-image {
    width: 80%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.person-image {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 60%;
    height: auto;
    border-radius: 20px;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 968px) {
    .content-wrapper {
        flex-direction: column;
    }
    
    .statsgrid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .image-content {
        margin-top: 3rem;
    }
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 2rem;
    }
    
    .person-image {
        right: 0;
        top: -20px;
    }
}
.todays-question {
    padding: 5rem 5%;
    background-color: #fff;
}

.content-wrapper {
    max-width: 100%;
    margin: 0 auto;
}

.question-content {
    width: 100%;
    margin-bottom: 4rem;
}

.label {
    display: inline-block;
    background-color: #FF5722;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.question-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.question-title u {
    text-decoration: none;
    border-bottom: 3px solid #000!important;
}

.highlight {
    color: #FF5722;
}

.question-description,
.additional-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    color: #FF5722;
    text-decoration: none;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.topic-card {
    background: #fff;
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 10px 10px 10px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.topic-card:hover {
    transform: translateY(-5px);
}

.topic-card.primary:hover {
    background: #FF5722;
    color: white;
}

.topic-card.primary:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.5rem;
}

.icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.topic-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 800;
}

.topic-card p {
    color: #666;
    line-height: 1.5;
    font-size: 0.9rem;
}

.svg-icon {
  filter: brightness(0) saturate(100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .question-title {
        font-size: 2.5rem;
    }

    .topics-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .topic-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .question-title {
        font-size: 2rem;
    }
}
/* FAQ Section Styles */
.faq-section {
    padding: 5rem 0;
    background-color: #fff;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight {
    color: #FF5722;
}

.section-description {
    max-width: 800px;
    margin: 0 auto;
    color: #666;
    font-size: 1.1rem;
}

/* FAQ Cards */
.faq-container {
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
}

.faq-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-3px);
}

.question {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.answer {
    color: #444;
    line-height: 1.6;
}

.answer p {
    margin-bottom: 1rem;
}

.answer ul {
    margin: 1rem 0 1rem 1.5rem;
}

.answer li {
    margin-bottom: 0.5rem;
}

/* Arabic Text Styling */
.arabic-text {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8f8f8;
    border-radius: 8px;
}

.arabic {
    font-family: 'Traditional Arabic', serif;
    font-size: 1.5rem;
    text-align: right;
    direction: rtl;
    margin: 1rem 0;
}

/* See More Button */
.see-more {
    text-align: right;
}

.see-more-btn {
    background: none;
    border: none;
    color: #FF5722;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    transition: opacity 0.3s ease;
}

.see-more-btn:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-card {
        padding: 1.5rem;
    }

    .question {
        font-size: 1.25rem;
    }

    .arabic {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
    }

    .faq-card {
        padding: 1rem;
    }
}
 .testimonials-container {
            max-width: 94%;
            margin: 0 auto;
            padding: 40px 20px;
            text-align: center;
            font-family: Arial, sans-serif;
        }

        .testimonials-header {
            margin-bottom: 60px;
        }

        .testimonials-header h1 {
            font-size: 48px;
            margin-bottom: 20px;
            font-weight: bold;
        }

        .testimonials-header h1 span {
            color: #FF5722;
        }

        .testimonials-header p {
            color: #666;
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .testimonial-card {
            padding: 30px;
            border-radius: 10px;
            background: #fff;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
        }

        .testimonial-card.highlighted:hover {
            background: #FF5722;
            color: white;
        }

        .avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: -70px auto 20px;
            overflow: hidden;
            border: 4px solid #fff;
        }

        .avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .name {
            font-size: 17px;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .testimonial-text {
            font-size: 13px;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .lines
        {
            height: 63%;
        }

        .stars {
            color: #FFD700;
            font-size: 20px;
        }

        .highlighted .stars:hover {
            color: #fff;
        }

        @media (max-width: 768px) {
            .testimonials-header h1 {
                font-size: 36px;
            }
            
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
        }
         .team-container {
            background-color: #0E0E0E;
            color: white;
            padding: 60px 20px;
            font-family: Arial, sans-serif;
        }

        .team-content {
            max-width: 94%;
            margin: 0 auto;
        }

        .team-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 50px;
        }

        .team-title {
            font-size: 48px;
            font-weight: bold;
            max-width: 500px;
            line-height: 1.2;
        }

        .team-title span {
            color: #FF5722;
            display: block;
        }

        .team-description {
            max-width: 400px;
            color: #CCCCCC;
            line-height: 1.6;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .team-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            display: flex;
            gap: 30px;
        }

        .team-image {
            width: 160px;
            height: 242px;
            border-radius: 15px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .team-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .team-info {
            flex-grow: 1;
        }

        .team-name {
            color: #FF5722;
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .team-bio {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .team-stats {
            display: flex;
            gap: 20px;
            color: #666;
            font-size: 14px;
        }

        .stat {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .stat i {
            color: #FF5722;
        }

        .read-more {
            color: #FF5722;
            text-decoration: none;
            font-weight: bold;
            display: block;
            margin-top: 15px;
        }

        @media (max-width: 992px) {
            .team-grid {
                grid-template-columns: 1fr;
            }
            
            .team-header {
                flex-direction: column;
                gap: 20px;
            }

            .team-title {
                font-size: 36px;
            }
        }

        @media (max-width: 576px) {
            .team-card {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .team-stats {
                justify-content: center;
            }
        }
                .contact-container {
            max-width: 94%;
            margin: 0 auto;
            padding: 80px 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            font-family: Arial, sans-serif;
        }

        .content-section {
            padding-right: 40px;
        }

        .title {
            font-size: 48px;
            font-weight: bold;
            line-height: 1.2;
            margin-bottom: 30px;
        }

        .highlight {
            color: #FF5722;
            display: block;
        }

        .description {
            color: #666;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        .contact-info {
            list-style: none;
            padding: 0;
            margin-top: 40px;
        }

        .contact-info li {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            color: #666;
        }

        .contact-info i {
            color: #FF5722;
            font-size: 20px;
        }

        .form-section {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            color: #666;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #E0E0E0;
            border-radius: 30px;
            font-size: 16px;
            color: #333;
            transition: border-color 0.3s ease;
        }

        .form-group textarea {
            border-radius: 15px;
            min-height: 120px;
            resize: vertical;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #FF5722;
        }

        .submit-btn {
            width: 100%;
            padding: 15px;
            background: #FF5722;
            color: white;
            border: none;
            border-radius: 30px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .submit-btn:hover {
            background: #E64A19;
        }

        @media (max-width: 992px) {
            .contact-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .content-section {
                padding-right: 0;
            }

            .title {
                font-size: 36px;
            }
        }
                .footer {
            background-color: #0E0E0E;
            color: white;
            padding: 60px 0;
            font-family: Arial, sans-serif;
        }

        .footer-container {
            max-width: 94%;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1.5fr 2fr;
            gap: 40px;
        }

        .brand-section .logo {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .brand-section .logo span {
            color: #FF5722;
        }

        .brand-description {
            color: #ffffff;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border: 1px solid #333;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: #FF5722;
            border-color: #FF5722;
        }

        .links-section h3 {
            font-size: 18px;
            margin-bottom: 25px;
            color: white;
        }

        .quick-links {
            list-style: none;
            padding: 0;
        }

        .quick-links li {
            margin-bottom: 15px;
        }

        .quick-links a {
            color: #ffffff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .quick-links a:hover {
            color: #FF5722;
        }

        .contact-info {
            list-style: none;
            padding: 0;
        }

        .contact-info li {
            color: #ffffff;
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        .contact-infos li
        {
            color: #000!important;
        }

        .newsletter-section h3 {
            font-size: 18px;
            margin-bottom: 25px;
        }

        .newsletter-form {
            display: flex;
            gap: 0px;
        }

        .newsletter-input {
            flex-grow: 1;
            padding: 12px 20px;
            border: none;
            border-radius: 16px 0 0px 16px;
            font-size: 14px;
            background: white;
        }

        .newsletter-input:focus {
            outline: none;
        }

        .subscribe-btn {
            padding: 24px 30px;
            background: #FF5722;
            color: white;
            border: none;
            border-radius: 0px 16px 16px 0px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }

        .subscribe-btn:hover {
            background: #E64A19;
        }

        @media (max-width: 992px) {
            .footer-container {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 576px) {
            .footer-container {
                grid-template-columns: 1fr;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .subscribe-btn {
                width: 100%;
            }
        }

        .image-section {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-section img {
    width: 350px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.overlay-image {
    position: absolute;
    top: 20px;
    right: 0px;
    width: 200px;
    height: auto;
    border-radius: 15px;
}
.imgsrc
    {
        z-index: 1;
        margin-top: 200px;
    }
/* Form container styling */
.newsletter-form {
    display: flex;
    flex-direction: row; /* Keep input and button inline */
    flex-wrap: nowrap; /* Prevent wrapping */
    gap: 0; /* No gap between input and button */
    max-width: 400px; /* Set a maximum width for the form */
    margin: 20px auto; /* Center the form horizontally */
}

/* Input field styling */
.newsletter-input {
    flex-grow: 1; /* Allow input to take up remaining space */
    padding: 12px 20px;
    border: none;
    border-radius: 16px 0 0 16px; /* Rounded corners on the left */
    font-size: 14px;
    background: white; /* Input background color */
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle inner shadow */
}

.newsletter-input:focus {
    outline: none; /* Remove focus outline */
    background: #f9f9f9; /* Slightly different background on focus */
}

/* Button styling */
.subscribe-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 0 16px 16px 0; /* Rounded corners on the right */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s ease, transform 0.2s ease;
}


.subscribe-btn:active {
    transform: translateY(1px); /* Subtle press-down effect */
}

/* Responsive Design (optional adjustments) */
@media (max-width: 480px) {
    .newsletter-form {
        max-width: 100%; /* Allow the form to stretch to full width */
    }

    .newsletter-input {
        font-size: 13px; /* Adjust font size for small screens */
    }

    .subscribe-btn {
        padding: 12px 15px; /* Reduce button padding for smaller screens */
    }
}
