/* ========================================
   HERO SECTION - RESPONSIVE & ENGAGING
   ======================================== */

.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 50%, #ffffff 100%);
    color: #0b3c5d;
    text-align: center;
    padding: 40px 10px;
    overflow: hidden;
}

/* Decorative Background Elements */
.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(11, 60, 93, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    animation: fadeInUp 0.8s ease-out;
    padding: 40px 20px;
}

.hero-content h1 {
    font-size: 3.4rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    color: #0b3c5d;
    letter-spacing: -0.5px;
}

.hero-subheading {
    font-size: 1rem;
    margin-bottom: 40px;
    opacity: 0.75;
    line-height: 1.25;
    color: #334e68;
    font-weight: 400;
    letter-spacing: 0.5px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-industries {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 10px 0 10px 0;
    padding: 10px 0;
}

.industry-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #0b3c5d;
    padding: 8px 16px;
    background: rgba(56, 189, 248, 0.08);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.industry-badge i {
    font-size: 1.1rem;
    color: #0d5a8f;
}

.industry-badge:hover {
    background: rgba(56, 189, 248, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(11, 60, 93, 0.1);
}

.hero-meta {
    font-size: 0.75rem;
    opacity: 0.6;
    color: #475569;
    font-weight: 500;
    text-align: center;

}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-content .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 40px;
    background: #0b3c5d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(11, 60, 93, 0.1);
    border: 1px solid #0b3c5d;
    position: relative;
    letter-spacing: 0.3px;
}

.hero-content .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(11, 60, 93, 0.18);
}

.hero-content .cta-button:active {
    transform: translateY(-2px);
}

.cta-button-secondary {
    background: #ffffff;
    color: #0b3c5d;
    border: 1px solid #0b3c5d;
    box-shadow: none;
}

.cta-button-secondary:hover {
    background: #f0f7ff;
    color: #0b3c5d;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(11, 60, 93, 0.2);
}
.cta-button {
    display: inline-flex;
    padding: 14px 44px;
    background: #ffffff;
    color: #0b3c5d;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(56, 189, 248, 0.3);
}

.cta-button:hover {
    background: #f0f7ff;
    color: #0b3c5d;
    box-shadow: 0 6px 20px rgba(56, 189, 248, 0.4);
}


/* Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ========================================
   PRINCIPLES SECTION
   ======================================== */

.principles {
    background: linear-gradient(135deg, #0b3c5d 0%, #0d5a8f 100%);
    padding: 40px 20px 40px;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.principles-container {
    max-width: 1200px;
    margin: auto;
}

.principles-container h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-align: center;
    letter-spacing: -0.5px;
}

.section-intro {
    font-size: 1.15rem;
    text-align: center;
    opacity: 0.9;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    max-width: 1200px;
    margin: 0 auto;
}

.principle-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px 18px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(3px);
}

.principle-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(56, 189, 248, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.principle-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #38bdf8;
    transition: transform 0.4s ease;
    display: inline-block;
    line-height: 1;
    height: auto;
    width: auto;
    min-height: 50px;
}

.principle-icon i {
    display: inline-block;
    line-height: 1;
}

.principle-card:hover .principle-icon {
    transform: scale(1.15);
}

.principle-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: inherit;
}

.principle-card p {
    font-size: 0.9rem;
    line-height: 1.65;
    opacity: 0.85;
}

.principle-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: inline-block;
}

.principle-list li {
    font-size: 0.9rem;
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
}

.principle-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #38bdf8;
    font-weight: bold;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   SERVICES HIGHLIGHT SECTION
   ======================================== */

.services-highlight {
    padding: 40px 10px 50px;
    background: #ffffff;
    border-top: 1px solid #f0f0f0;
}

.services-container {
    max-width: 1200px;
    margin: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0b3c5d;
    letter-spacing: -0.3px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: 0.2px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1320px;
    margin: 0 auto;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 18px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
    box-shadow: 0 1px 3px rgba(11, 60, 93, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    border-color: #e0e0e0;
    box-shadow: 0 4px 12px rgba(11, 60, 93, 0.08);
    transform: translateY(-2px);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: #e8eff7;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #0b3c5d;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    line-height: 1;
}

.service-icon i {
    display: inline-block;
    line-height: 1;
}

.service-card:hover .service-icon {
    transform: scale(1.08);
    color: #38bdf8;
    background: #dce9f5;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #0b3c5d;
}

.service-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 24px;
    flex-grow: 1;
    max-width: 100%;
}

.service-link {
    color: #0b3c5d;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
    letter-spacing: 0.2px;
}

.service-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #0b3c5d;
    transition: width 0.3s ease;
}

.service-link:hover::after {
    width: 100%;
}

/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */

.why-choose-us {
    background: #f0ffff;
    padding: 40px 10px 40px;
    border-top: 1px solid #f0f0f0;
}

.why-container {
    max-width: 1200px;
    margin: auto;
}

.why-container h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #0b3c5d;
    margin-bottom: 34px;
    text-align: center;
    letter-spacing: -0.3px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1320px;
    margin: 0 auto;
}

.why-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 18px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 1px 3px rgba(11, 60, 93, 0.03);
}

.why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0b3c5d, #38bdf8);
    border-radius: 12px 12px 0 0;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card:hover {
    background: #ffffff;
    color: #0b3c5d;
    border-color: #e0e0e0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(11, 60, 93, 0.08);
}

.why-card-icon {
    width: 60px;
    height: 60px;
    background: #e8eff7;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #0b3c5d;
    margin: 0 auto 24px;
    transition: all 0.4s ease;
    line-height: 1;
}

.why-card-icon i {
    display: inline-block;
    line-height: 1;
}

.why-card:hover .why-card-icon {
    transform: scale(1.1);
    color: #38bdf8;
    background: #dce9f5;
}

.why-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #0b3c5d;
}

.why-card:hover h3 {
    color: #38bdf8;
}

.why-card p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: #666;
}

.why-card:hover p {
    color: #0b3c5d;
}

/* ========================================
   INDUSTRIES SECTION
   ======================================== */

.industries-section {
    padding: 40px 20px 40px;
    background: #ffffff;
    border-top: 1px solid #f0f0f0;
}

.industries-container {
    max-width: 1200px;
    margin: auto;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 44px;
    margin-top: 56px;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
}

.industry-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
    box-shadow: 0 1px 3px rgba(11, 60, 93, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.industry-card:hover {
    background: #ffffff;
    color: #0b3c5d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(11, 60, 93, 0.08);
    border-color: #e0e0e0;
}

.industry-icon {
    font-size: 56px;
    margin-bottom: 28px;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0b3c5d 0%, #0d5a8f 100%);
    border-radius: 12px;
    color: #ffffff;
    width: 72px;
    height: 72px;
    line-height: 1;
}

.industry-icon i {
    display: inline-block;
    line-height: 1;
}

.industry-card:hover .industry-icon {
    transform: scale(1.15) rotateZ(10deg);
    box-shadow: 0 12px 24px rgba(11, 60, 93, 0.25);
    background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
}

.industry-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #0b3c5d;
}

.industry-card:hover h3 {
    color: #0b3c5d;
}

.industry-card p {
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.75;
}

.industry-card:hover p {
    opacity: 0.8;
    color: #0b3c5d;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    background: linear-gradient(135deg, #0b3c5d 0%, #0d5a8f 100%);
    color: #ffffff;
    padding: 120px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 44px;
    opacity: 0.9;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-large {
    padding: 14px 44px !important;
    font-size: 0.95rem !important;
    background: #ffffff !important;
    color: #0b3c5d !important;
    box-shadow: 0 2px 8px rgba(11, 60, 93, 0.1) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-weight: 500 !important;
    border: 1px solid #0b3c5d !important;
    letter-spacing: 0.3px !important;
}

.cta-large:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 16px 40px rgba(56, 189, 248, 0.4) !important;
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-section {
    padding: 40px 20px 50px;
    background: #f0ffff;
    border-top: 1px solid #f0f0f0;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-section h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #0b3c5d;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: -0.3px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 20px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
    border-left: 3px solid #0b3c5d;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(11, 60, 93, 0.03);
    border: 1px solid #f0f0f0;
    border-left: 3px solid #0b3c5d;
}

.faq-item:hover {
    box-shadow: 0 2px 8px rgba(11, 60, 93, 0.06);
    border-left-color: #0d5a8f;
}

.faq-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0b3c5d;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    line-height: 1.5;
}

.faq-item h3 i {
    font-size: 0.9rem;
    color: #38bdf8;
    flex-shrink: 0;
}

.faq-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        min-height: 85vh;
        padding: 60px 20px;
    }

    .hero-content h1 {
        font-size: 2.6rem;
        margin-bottom: 20px;
    }

    .hero-subheading {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }

    .section-header h2,
    .principles-container h2,
    .why-container h2 {
        font-size: 2.2rem;
    }

    .principles {
        padding: 80px 20px 60px;
    }

    .services-highlight {
        padding: 90px 20px 70px;
    }

    .why-choose-us {
        padding: 90px 20px 70px;
    }

    .industries-section {
        padding: 90px 20px 70px;
    }

    .cta-section {
        padding: 100px 20px;
    }

    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 85vh;
        padding: 50px 20px;
    }

    .hero::before {
        width: 400px;
        height: 400px;
        right: -20%;
        top: -30%;
    }

    .hero::after {
        width: 300px;
        height: 300px;
        bottom: -10%;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .hero-subheading {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
        padding: 0 10px;
    }

    .hero-industries {
        flex-direction: column;
        gap: 12px;
        margin: 32px 0 16px 0;
        padding: 20px 0;
    }

    .industry-badge {
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    .hero-content .cta-button {
        padding: 14px 32px;
        font-size: 1rem;
        width: 100%;
    }

    .principles {
        padding: 60px 20px;
    }

    .services-highlight {
        padding: 60px 20px;
    }

    .why-choose-us {
        padding: 60px 20px;
    }

    .industries-section {
        padding: 60px 20px;
    }

    .cta-section {
        padding: 80px 20px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .principle-card {
        padding: 32px 24px;
    }

    .service-card {
        padding: 32px 24px;
    }

    .why-card {
        padding: 32px 24px;
    }

    .industry-card {
        padding: 32px 24px;
    }

    .principles-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .industries-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .faq-section {
        padding: 80px 20px;
    }

    .faq-section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .faq-item {
        padding: 24px;
    }

    .faq-item h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 80vh;
        padding: 30px 16px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-subheading {
        font-size: 0.95rem;
    }

    .hero-content .cta-button {
        padding: 12px 28px;
        font-size: 0.95rem;
    }

    .principles {
        padding: 40px 16px;
    }

    .principles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .industries-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-header h2,
    .principles-container h2,
    .why-container h2,
    .cta-section h2 {
        font-size: 1.6rem;
    }

    .service-card {
        padding: 28px 20px;
    }

    .principle-card {
        padding: 28px 20px;
    }

    .why-card {
        padding: 28px 20px;
    }
}
/* ===================================== */
/* NEWSLETTER SECTION */
/* ===================================== */
.newsletter-section {
    background: linear-gradient(135deg, #0b3c5d 0%, #0d5a8f 100%);
    padding: 80px 20px;
    color: #ffffff;
    text-align: center;
}

.newsletter-container {
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-content {
    margin-bottom: 40px;
}

.newsletter-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.newsletter-content p {
    font-size: 1.05rem;
    opacity: 0.95;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.newsletter-form .form-group {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
    outline: none;
    border-color: #38bdf8;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
    padding: 12px 36px;
    background: #ffffff;
    color: #0b3c5d;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: #f0f7ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(56, 189, 248, 0.4);
}

.form-note {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 10px;
}

@media (max-width: 600px) {
    .newsletter-section {
        padding: 50px 20px;
    }
    
    .newsletter-content h2 {
        font-size: 1.8rem;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .newsletter-btn {
        width: 100%;
    }
}