/* Wider containers for specific sections */
.banner-industries .container,
.custom-functionality-section .container,
.simplify-section .container {
    max-width: 1600px;
    padding-left: 40px;
    padding-right: 40px;
}

/* For even wider screens */
@media (min-width: 1700px) {
    .banner-industries .container,
    .custom-functionality-section .container,
    .simplify-section .container {
        max-width: 1800px;
        padding-left: 60px;
        padding-right: 60px;
    }
}

/* Banner Section */
.banner-industries {
    background-color: #000;
    padding: 60px 0;
    overflow: hidden; /* Prevent all overflow */
}

.banner-industries .row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.banner-text {
    display: flex;
    flex-direction: column;
    max-width: 700px;
    min-height: 500px;
}

.banner-image {
    display: flex;
    overflow: hidden;
    width: 40%;
    height: auto;
    align-items: center;
}


.banner-industries h1 {
    font-size: 53.6px;
    margin-top: 50px;
    text-transform: uppercase;
    color: #fff;
    font-weight: normal;
}

.banner-industries h1 span {
    color: #2adafe;
}

.banner-industries h3 {
    text-transform: uppercase;
    color: #fff;
    font-size: 30px;
    margin-top: 20px;
    font-weight: normal;
}

.banner-industries p {
    margin-top: 20px;
    color: #fff;
    font-size: 25px;
    line-height: 1.6;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background-color: #2adafe;
    color: #000;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    align-self: flex-start;
    position: relative;
}

.cta-button:hover {
    background-color: #1ec4e8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 188, 212, 0.3);
    color: #000;
}

/* Fade In Animation */
.fade-in {
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-1 {
    animation-delay: 0.2s;
}

.fade-in-2 {
    animation-delay: 0.4s;
}

.fade-in-3 {
    animation-delay: 0.6s;
}

.fade-in-4 {
    animation-delay: 0.8s;
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Tablet Landscape Extended (1024px - 1199px) */
@media (max-width: 1199px) and (min-width: 1024px) {
    .banner-industries {
        max-width: 100vw;
        overflow: hidden;
    }
    
    .banner-industries .row {
        max-width: 100%;
        padding: 0 30px;
        gap: 30px;
    }
    
    .banner-text {
        flex: 0 0 55%;
        max-width: 600px;
        min-height: auto;
    }
    
    .banner-image {
        flex: 0 0 40%;
        overflow: hidden;
        max-width: 450px;
    }
    
    .banner-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    .banner-industries h1 {
        font-size: 44px;
        margin-top: 20px;
    }
    
    .banner-industries h3 {
        font-size: 26px;
        margin-top: 15px;
    }
    
    .banner-industries p {
        font-size: 22px;
        margin-top: 15px;
    }
    
    .cta-button {
        margin-top: 25px;
    }
}

/* Tablet Landscape (992px - 1023px) */
@media (max-width: 1023px) and (min-width: 992px) {
    .banner-text {
        flex: 0 0 55%;
    }
    
    .banner-image {
        flex: 0 0 45%;
        overflow: hidden;
    }
    
    .banner-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    .banner-industries h1 {
        font-size: 42px;
    }
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) {
    
    .banner-industries {
        padding: 40px 0;
        height: auto; /* Changed from max-height */
        max-width: 100vw;
        overflow: hidden;
    }
    
    .banner-industries .row {
        flex-direction: column;
    }
    
    .banner-text {
        flex: 0 0 auto;
        max-width: 100%;
        padding: 0 20px;
        min-height: auto;
        text-align: center;
        align-items: center;
    }
    
    .banner-image {
        flex: 0 0 auto;
        margin-top: 30px;
        height: auto; /* Changed from min/max-height */
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 100%;
    }
    
    .banner-image img {
        width: 100%;
        max-width: 500px;
        max-height: 280px;
        height: auto;
        object-fit: contain;
    }
    
    .banner-industries h1 {
        font-size: 38px;
        margin-top: 30px;
    }
    
    .banner-industries p {
        font-size: 14px;
    }
    
    .cta-button {
        align-self: center;
    }
}

/* Mobile Landscape (576px - 767px) */
@media (max-width: 767px) {
    .banner-industries {
        padding: 30px 0;
        height: auto; /* Changed from max-height */
        max-width: 100vw;
        overflow: hidden;
    }
    
    .banner-industries .row {
        height: auto; /* Changed from max-height */
    }
    
    .banner-text {
        text-align: center;
        align-items: center;
        min-height: auto;
    }
    
    .banner-industries h1 {
        font-size: 32px;
        margin-top: 20px;
    }
    
    .banner-industries p {
        margin-top: 20px;
        font-size: 14px;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 14px;
        margin-top: 20px;
        align-self: center;
    }
    
    .banner-image {
        display: none;
    }
}

/* Mobile Portrait (up to 575px) */
@media (max-width: 575px) {
    .banner-industries {
        padding: 30px 0;
        height: auto; /* Changed from max-height */
        max-width: 100vw;
        overflow: hidden;
    }
    
    .banner-industries .row {
        height: auto; /* Changed from min-height */
    }
    
    .banner-text {
        text-align: center;
        align-items: center;
        min-height: auto;
    }
    
    .banner-industries h1 {
        font-size: 28px;
    }
    
    .banner-image {
        display: none;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
        align-self: center;
    }
}

/* Why Choose Section */
.why-choose-section {
    background-color: #f5f5f5;
    padding: 80px 20px;
}

.why-choose-section .section-label {
    text-align: center;
    color: #888;
    font-size: 14px;
    font-weight: light;
    font-family: "Oswald", "san-serif";
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.why-choose-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.2;
}

.why-choose-section .section-title .highlight {
    color: #00bcd4;
}

.why-choose-section .section-description {
    text-align: center;
    font-size: 1.1rem;
    color: #333;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.why-choose-section .feature-card {
    background-color: #fff;
    padding: 40px 35px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: grid;
    grid-template-columns: 50px 1fr;
    grid-template-rows: auto 1fr;
    gap: 20px;
    column-gap: 20px;
    row-gap: 0;
}

.why-choose-section .feature-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    grid-column: 1;
    grid-row: 1;
}

.why-choose-section .feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    margin-top: 0;
    grid-column: 2;
    grid-row: 1;
}

.why-choose-section .feature-description {
    font-size: 1rem;
    color: #000;
    line-height: 1.7;
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 0;
}

/* Tablet Portrait */
@media (max-width: 991px) {
    .why-choose-section {
        padding: 60px 20px;
    }
    
    .why-choose-section .section-title {
        font-size: 2rem;
    }
    
    .why-choose-section .feature-card {
        margin-bottom: 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .why-choose-section .section-title {
        font-size: 1.8rem;
    }

    .why-choose-section .section-description {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .why-choose-section {
        padding: 50px 15px;
    }

    .why-choose-section .feature-card {
        padding: 30px 25px;
        margin-bottom: 20px;
    }
    
    .why-choose-section .feature-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 575px) {
    .why-choose-section .section-title {
        font-size: 1.5rem;
    }
    
    .why-choose-section .feature-card {
        padding: 25px 20px;
    }
}

/* Custom Functionality Section */
.custom-functionality-section {
    background-color: #1a2332;
    padding: 80px 20px;
    background-image: none !important;
}

.custom-functionality-section .section-label {
    color: #00bcd4;
    font-size: 13px;
    font-family: "Oswald", "san-serif";
    font-weight: light;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.custom-functionality-section .section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.2;
    margin-top: 0;
}

.custom-functionality-section .section-title .highlight {
    color: #00bcd4;
}

.custom-functionality-section .section-description {
    font-size: 1.1rem;
    color: #d1d5db;
    margin-bottom: 50px;
    line-height: 1.6;
    max-width: 600px;
}

.custom-functionality-section .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-bottom: 60px;
}

.custom-functionality-section .feature-item {
    display: flex;
    gap: 20px;
}

.custom-functionality-section .feature-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-functionality-section .feature-icon svg {
    width: 50px;
    height: 50px;
    stroke: #00bcd4;
    background-color: #004e588c;
    padding: 10px;
    border-radius: 12px;
}

.custom-functionality-section .feature-content h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

.custom-functionality-section .feature-content p {
    font-size: 0.95rem;
    color: #9ca3af;
    line-height: 1.6;
    margin: 0;
}

.custom-functionality-section .mockup-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.custom-functionality-section .cta-section {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
}

.custom-functionality-section .cta-text {
    font-size: 2.5rem;
    font-weight: 700;
}

.custom-functionality-section .cta-text .call-label {
    color: #00bcd4;
    text-transform: uppercase;
    font-family: "Oswald", "san-serif";
}

.custom-functionality-section .cta-text .phone-number {
    color: #fff;
    font-family: "Oswald", "san-serif";
}

/* Tablet Landscape */
@media (max-width: 1199px) {
    .custom-functionality-section .section-title {
        font-size: 2.5rem;
    }
    
    .custom-functionality-section .features-grid {
        gap: 25px;
    }
}

/* Tablet Portrait */
@media (max-width: 991px) {
    .custom-functionality-section {
        padding: 60px 20px;
    }
    
    .custom-functionality-section .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .custom-functionality-section .section-title {
        font-size: 2.2rem;
    }

    .custom-functionality-section .cta-text {
        font-size: 1.8rem;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    .custom-functionality-section {
        padding: 50px 15px;
    }

    .custom-functionality-section .section-title {
        font-size: 1.8rem;
    }

    .custom-functionality-section .section-description {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .custom-functionality-section .cta-text {
        font-size: 1.5rem;
    }
    
    .custom-functionality-section .feature-item {
        gap: 15px;
    }
    
    .custom-functionality-section .cta-section {
        margin-top: 40px;
        padding-top: 30px;
    }
}

/* Mobile Portrait */
@media (max-width: 575px) {
    .custom-functionality-section .section-title {
        font-size: 1.5rem;
    }
    
    .custom-functionality-section .cta-text {
        font-size: 1.2rem;
    }
    
    .custom-functionality-section .feature-content h3 {
        font-size: 1.1rem;
    }
}

/* API/Integrations Section */
.api-section {
    background-color: #fff;
    padding: 80px 20px;
}

.api-section .section-label {
    text-align: center;
    color: #00bcd4;
    font-family: "Oswald", "san-serif";
    font-size: 13px;
    font-weight: light;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.api-section .section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.2;
}

.api-section .section-title .highlight {
    color: #00bcd4;
}

.api-section .section-description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.api-section .laptops-showcase {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 60px;
    height: 450px;
    margin-top: -100px;
}

.api-section .laptop {
    position: absolute;
    width: 45%;
    height: auto;
    border-radius: 8px;
}

.api-section .laptop-left {
    left: 0;
    top: 50px;
    z-index: 1;
}

.api-section .laptop-center {
    left: 50%;
    transform: translateX(-50%);
    top: 80px;
    z-index: 3;
    width: 50%;
}

.api-section .laptop-right {
    right: 0;
    top: 50px;
    z-index: 1;
}

.api-section .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.api-section .feature-card {
    background-color: #e4e4e4;
    padding: 35px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.api-section .feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}

.api-section .feature-card p {
    font-size: 0.95rem;
    color: #000;
    line-height: 1.6;
    margin: 0;
}

.api-section .feature-card:last-child {
    grid-column: 2;
}

/* Tablet Landscape */
@media (max-width: 1199px) {
    .api-section .laptops-showcase {
        height: 400px;
        margin-top: -80px;
    }
}

/* Tablet Portrait */
@media (max-width: 991px) {
    .api-section {
        padding: 60px 20px;
    }
    
    .api-section .laptops-showcase {
        height: 350px;
        margin-top: -60px;
    }

    .api-section .features-grid {
            grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .api-section .section-title {
        font-size: 2.2rem;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    .api-section {
        padding: 50px 15px;
    }

    .api-section .laptops-showcase {
        height: 250px;
        margin-top: -100px;
        margin-bottom: 250px;
    }

    .api-section .laptop {
        width: 60%;
    }

    .api-section .laptop-left,
    .api-section .laptop-right {
        display: none;
    }

    .api-section .laptop-center {
        width: 80%;
        top: 20px;
    }

    .api-section .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .api-section .feature-card:last-child {
    grid-column: 1;
}

    .api-section .section-title {
        font-size: 1.8rem;
    }

    .api-section .section-description {
        font-size: 1rem;
    }
    
    .api-section .feature-card {
        padding: 25px 20px;
    }
}

/* Mobile Portrait */
@media (max-width: 575px) {
    .api-section .section-title {
        font-size: 1.5rem;
    }
    
    .api-section .laptops-showcase {
        height: 200px;
        margin-top: -50px;
        margin-bottom: 100px;
    }
    
    .api-section .laptop-center {
        width: 90%;
    }
}

/* Simplify/Complexity Section */
.simplify-section {
    background-color: #1a2332;
    padding: 80px 20px;
    color: #fff;
}

.simplify-section .section-label {
    text-align: center;
    color: #00bcd4;
    font-family: "Oswald", "san-serif";
    font-size: 13px;
    font-weight: light;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.simplify-section .section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.simplify-section .section-title .highlight {
    color: #00bcd4;
}

.simplify-section .section-description {
    text-align: center;
    font-size: 1.1rem;
    color: #fff;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.simplify-section .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #1a2332;
    padding: 20px;
}

.simplify-section .feature-card {
    background: #1a2d42;
    padding: 20px 30px;
    border-radius: 12px;
    border: 1px solid rgba(0, 188, 212, 0.1);
}

.simplify-section .feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.simplify-section .feature-icon svg {
    width: 50px;
    height: 50px;
    stroke: #00bcd4;
    fill: none;
    background-color: #004e588c;
    padding: 10px;
    border-radius: 12px;
}

.simplify-section .feature-card h3 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.simplify-section .feature-card p {
    font-size: 0.95rem;
    color: #8899ad;
    line-height: 1.6;
    margin: 0;
}

/* Tablet Landscape */
@media (max-width: 1199px) {
    .simplify-section .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet Portrait */
@media (max-width: 991px) {
    .simplify-section {
        padding: 60px 20px;
    }
    
    .simplify-section .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 15px;
    }
    
    .simplify-section .section-title {
        font-size: 2.2rem;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    .simplify-section {
        padding: 50px 15px;
    }

    .simplify-section .features-grid {
        grid-template-columns: 1fr;
    }

    .simplify-section .section-title {
        font-size: 2rem;
    }

    .simplify-section .section-description {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .simplify-section .feature-card {
        padding: 25px 20px;
    }
}

/* Mobile Portrait */
@media (max-width: 575px) {
    .simplify-section .section-title {
        font-size: 1.6rem;
    }
    
    .simplify-section .feature-card h3 {
        font-size: 1.1rem;
    }
}

/* Modernize Section */
.modernize-cta-section {
    background-color: #1a2332;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.modernize-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.modernize-cta-section .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.modernize-content-wrapper {
    text-align: center;
}

.modernize-heading {
    font-size: 5.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.modernize-highlight {
    color: #00bcd4;
    position: relative;
    display: inline-block;
}

.modernize-subtext {
    font-size: 1.75rem;
    color: #fff;
    margin-bottom: 45px;
    line-height: 1.6;
}

.modernize-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #00bcd4;
    color: #000000;
    padding: 18px 45px;
    font-size: 1.30rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(0, 188, 212, 0.25);
}

.modernize-cta-btn:hover {
    background-color: #2adafe;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 188, 212, 0.4);
    color: #000000;
}

.modernize-arrow-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.modernize-cta-btn:hover .modernize-arrow-icon {
    transform: translateX(5px);
}

/* Tablet Landscape */
@media (max-width: 1199px) {
    .modernize-heading {
        font-size: 4.5rem;
    }
    
    .modernize-subtext {
        font-size: 1.5rem;
    }
}

/* Tablet Portrait */
@media (max-width: 991px) {
    .modernize-cta-section {
        padding: 80px 20px;
    }

    .modernize-heading {
        font-size: 3.5rem;
    }

    .modernize-subtext {
        font-size: 1.3rem;
        margin-bottom: 40px;
    }
    
    .modernize-cta-btn {
        padding: 16px 40px;
        font-size: 1.2rem;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    .modernize-cta-section {
        padding: 60px 15px;
    }

    .modernize-heading {
        font-size: 2.5rem;
    }

    .modernize-subtext {
        font-size: 1.1rem;
        margin-bottom: 35px;
    }

    .modernize-subtext br {
        display: none;
    }

    .modernize-cta-btn {
        padding: 16px 35px;
        font-size: 1rem;
    }
}

/* Mobile Portrait */
@media (max-width: 575px) {
    .modernize-heading {
        font-size: 2rem;
    }

    .modernize-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 30px;
        font-size: 0.95rem;
    }
    
    .modernize-subtext {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .modernize-heading {
        font-size: 1.8rem;
    }
}

/* FAQ Section */
.questions-accordion-section {
    background: #1a2332;
    padding: 100px 20px;
    position: relative;
}

.questions-accordion-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.questions-header-wrapper {
    text-align: center;
    margin-bottom: 60px;
}

.questions-label-tag {
    display: inline-block;
    color: #00bcd4;
    font-family: "Oswald", "san-serif";
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.questions-main-title {
    font-size: 3.2rem;
    font-family: "Oswald", "san-serif";
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.questions-title-emphasis {
    color: #00bcd4;
}

.questions-intro-text {
    font-size: 1.30rem;
    color: #8b9aad;
    max-width: 900px;
    font-family: "Roboto", "san-serif";
    margin: 0 auto;
    line-height: 1.6;
}

.questions-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.questions-accordion-item {
    background-color: rgba(26, 35, 50, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.questions-accordion-item:hover {
    border-color: rgba(0, 188, 212, 0.3);
    background-color: rgba(26, 35, 50, 0.8);
}

.questions-item-active {
    border-color: rgba(0, 188, 212, 0.4);
    background-color: rgba(26, 35, 50, 0.9);
}

.questions-accordion-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 35px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.questions-accordion-question {
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
    padding-right: 20px;
}

.questions-active-text {
    color: #00bcd4;
}

.questions-chevron-icon {
    width: 24px;
    height: 24px;
    color: #fff;
    flex-shrink: 0;
    transition: transform 0.3s ease, color 0.3s ease;
}

.questions-item-active .questions-chevron-icon {
    color: #00bcd4;
    transform: rotate(180deg);
}

.questions-accordion-content {
    overflow: hidden;
    transition: grid-template-rows 0.3s ease;
    display: grid;
    grid-template-rows: 0fr;
}

.questions-accordion-content > div {
    overflow: hidden;
}

.questions-content-visible {
    grid-template-rows: 1fr;
}

.questions-accordion-content p {
    font-size: 1rem;
    color: #b8c5d6;
    line-height: 1.7;
    margin: 0;
    padding: 0 35px 30px 35px;
}

/* Tablet Landscape */
@media (max-width: 1199px) {
    .questions-main-title {
        font-size: 2.8rem;
    }
    
    .questions-intro-text {
        font-size: 1.2rem;
    }
}

/* Tablet Portrait */
@media (max-width: 991px) {
    .questions-accordion-section {
        padding: 80px 20px;
    }

    .questions-main-title {
        font-size: 2.6rem;
    }

    .questions-header-wrapper {
        margin-bottom: 50px;
    }
    
    .questions-label-tag {
        font-size: 18px;
    }
    
    .questions-intro-text {
        font-size: 1.1rem;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    .questions-accordion-section {
        padding: 60px 15px;
    }

    .questions-main-title {
        font-size: 2.2rem;
    }

    .questions-intro-text {
        font-size: 1rem;
    }

    .questions-accordion-toggle {
        padding: 24px 25px;
    }

    .questions-accordion-question {
        font-size: 1.05rem;
    }

    .questions-accordion-content p {
        padding-left: 25px;
        padding-right: 25px;
        padding-bottom: 25px;
    }

    .questions-chevron-icon {
        width: 20px;
        height: 20px;
    }
    
    .questions-label-tag {
        font-size: 16px;
        letter-spacing: 2px;
    }
    
    .questions-header-wrapper {
        margin-bottom: 40px;
    }
}

/* Mobile Portrait */
@media (max-width: 575px) {
    .questions-main-title {
        font-size: 1.8rem;
    }

    .questions-accordion-toggle {
        padding: 20px;
    }

    .questions-accordion-question {
        font-size: 0.95rem;
        padding-right: 15px;
    }

    .questions-accordion-content p {
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 20px;
        font-size: 0.95rem;
    }
    
    .questions-label-tag {
        font-size: 14px;
    }
    
    .questions-intro-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .questions-main-title {
        font-size: 1.6rem;
    }
    
    .questions-accordion-question {
        font-size: 0.9rem;
    }
}