.producttext {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 4rem);
    padding: clamp(5rem, 4vw, 5rem) clamp(6rem, 3vw, 9rem);
    gap: 5rem;
}

.prod-detail-logo {
    height: 120px;
    width: 120px;
}

.producttext h3 {
    font-weight: 500;
    text-align: left;
    font-size: 2.75rem;
    line-height: 1.2;

}

.phonebook-section {
    display: flex;
    margin-bottom: clamp(2rem, 4vw, 4rem);
    align-items: center;
    justify-content: space-between;
    padding: clamp(2rem, 4vw, 4rem) 3rem;
    gap: clamp(1rem, 3vw, 2rem);
}

.phonebook-section:nth-child(even) {
    flex-direction: row-reverse;
}

.phonebook-text {
    max-width: 50%;
    flex: 1;
    padding: clamp(1rem, 2vw, 2rem);
}

.phonebook-text h1 {
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    font-weight: 500;
    color: #333;
    margin-bottom: clamp(0.5rem, 2vw, 1rem);
}

.phonebook-text p {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: #666;
    line-height: 1.6;
    text-align: left;
}

.phonebook-image {
    max-width: 45%;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phonebook-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Tablet Breakpoint */
@media (max-width: 836px) {
    .application-header__secondary-heading {
        font-size: 1rem;
    }
}

/* Mobile Breakpoint */
@media (max-width: 768px) {

    .phonebook-section,
    .phonebook-section:nth-child(even) {
        flex-direction: column;
        text-align: center;
        padding: clamp(1.5rem, 3vw, 3rem) 1rem;
    }

    .phonebook-text {
        max-width: 100%;
        padding: clamp(0.5rem, 2vw, 1rem);
    }

    .phonebook-text h1 {
        text-align: left;
    }

    .phonebook-image {
        max-width: 80%;
        margin: 2rem auto 0;
    }
}

/* Small Mobile Breakpoint */
@media (max-width: 750px) {
    .producttext {
        display: block;
    }

    .application-header__text-wrapper {
        padding: 8px;
        width: 100% !important;
        max-width: auto !important;
    }
}

/* Small Mobile Breakpoint */
@media (max-width: 375px) {
    .producttext {
        padding: clamp(1rem, 2vw, 2rem);
    }

    .phonebook-image {
        max-width: 100%;
    }

    .phonebook-text h1 {
        font-size: 1.6rem;
    }

    .phonebook-text p {
        font-size: 0.875rem;
    }
}