/* Custom Article Card Section */
.custom-home-bottom-group {
    background: #f8f9fa;
    padding: 80px 0;
}

.custom-home-bottom-section {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 20px;
}

.custom-home-bottom-container {
    width: 100%;
}

.custom-home-bottom-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 60px 0;
    letter-spacing: 0.5px;
}

.custom-article-card-group {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    margin: 0 auto 60px auto;
}

.custom-article-card {
    background: #fff;
    border-radius: 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    width: 370px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
    transition: box-shadow 0.2s, transform 0.2s;
}

.custom-article-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    transform: translateY(-4px);
}

.custom-article-card-image {
    width: 100%;
    height: 275px;
    overflow: hidden;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.custom-article-card-content {
    background: #222222;
    padding: 28px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.custom-article-card-title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.custom-article-card-desc {
    color: #e0e0e0;
    font-size: 16px;
    margin: 0 0 28px 0;
    line-height: 1.6;
}

.custom-article-card-btn {
    display: inline-flex;
    align-items: center;
    background: #ED1C24;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    padding: 12px 28px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(237, 28, 36, 0.08);
    margin-top: 8px;
    cursor: pointer;
    letter-spacing: 0.2px;
    width: fit-content;
}

.custom-article-card-btn:hover {
    background: #000000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(237, 28, 36, 0.18);
    text-decoration: none;
}

.custom-article-card-btn-arrow {
    font-size: 20px;
    margin-left: 10px;
    line-height: 1;
}

/*CUSTOM HOME VIDEO SECTION*/
.custom-home-video {
    background-color: #ECECEC;
    padding: 80px 0;
}

.custom-video-section {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 20px;
}

.custom-video-container {
    width: 100%;
}

.custom-video-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.custom-video-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    letter-spacing: 0.5px;
}

.custom-video-see-all-btn {
    display: inline-flex;
    align-items: center;
    background: #ED1C24;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(237, 28, 36, 0.08);
    cursor: pointer;
    letter-spacing: 0.2px;
}

.custom-video-see-all-btn:hover {
    background: #000000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(237, 28, 36, 0.18);
    text-decoration: none;
}

.custom-video-btn-arrow {
    font-size: 16px;
    margin-left: 8px;
    line-height: 1;
}

.custom-video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    height: 600px;
}

.custom-video-item {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.custom-video-item.featured {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.custom-video-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.custom-video-thumbnail {
    width: 100%;
    flex: 1;
    position: relative;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-video-thumbnail iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.custom-video-info {
    padding: 15px;
    background: #000000;
    color: #fff;
}

.custom-video-item-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    color: #fff;
}

.custom-video-featured-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000000;
    padding: 20px;
    color: #fff;
}

.custom-video-featured-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    color: #fff;
}

@media (max-width: 1024px) {
    .custom-video-grid {
        grid-template-columns: repeat(3, 1fr);
        height: auto;
        gap: 15px;
    }

    .custom-video-item.featured {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }

    .custom-video-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .custom-home-video {
        padding: 60px 0;
    }

    .custom-video-section {
        padding: 0 15px;
    }

    .custom-video-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 30px;
    }

    .custom-video-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .custom-video-item.featured {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
        min-height: 200px;
    }

    .custom-video-title {
        font-size: 24px;
    }

    .custom-video-item-title {
        font-size: 12px;
    }

    .custom-video-featured-title {
        font-size: 16px;
    }

    .custom-video-info {
        padding: 10px;
    }

    .custom-video-featured-info {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .custom-video-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .custom-video-item.featured {
        grid-column: 1;
        grid-row: auto;
        min-height: 250px;
    }

    .custom-video-see-all-btn {
        font-size: 14px;
        padding: 10px 20px;
    }
}

.custom-home-bottom-see-all {
    text-align: center;
    margin-top: 40px;
}

.custom-home-bottom-btn {
    display: inline-flex;
    align-items: center;
    background: #ED1C24;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 16px 32px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(237, 28, 36, 0.08);
    cursor: pointer;
    letter-spacing: 0.2px;
}

.custom-home-bottom-btn:hover {
    background: #000000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(237, 28, 36, 0.18);
    text-decoration: none;
}

.custom-home-bottom-btn-arrow {
    font-size: 20px;
    margin-left: 10px;
    line-height: 1;
}

@media (max-width: 900px) {
    .custom-article-card-group {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .custom-article-card {
        width: 100%;
        max-width: 420px;
    }

    .custom-home-bottom-title {
        font-size: 28px;
    }
}

@media (max-width: 500px) {
    .custom-home-bottom-group {
        padding: 60px 0;
    }

    .custom-home-bottom-section {
        padding: 0 15px;
    }

    .custom-article-card {
        width: 100%;
        max-width: 100%;
    }

    .custom-article-card-content {
        padding: 18px 16px 18px 16px;
    }

    .custom-article-card-title {
        font-size: 18px;
    }

    .custom-article-card-desc {
        font-size: 14px;
    }

    .custom-article-card-btn {
        font-size: 14px;
        padding: 10px 18px;
    }

    .custom-home-bottom-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .custom-home-bottom-btn {
        font-size: 16px;
        padding: 12px 24px;
    }
}

/* Rectangle Navigation Items - New Classes */
.rectangle-nav-item {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 235px;
    height: 125px;
    background: #393939;
    margin-right: 3px;
    cursor: pointer;
    right: 200px;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.rectangle-nav-item:first-child {
    margin-left: 10px;
}

.rectangle-nav-item:hover {
    height: calc(125px + 47px);
    background: #fff;
    transform: translateY(0px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.rectangle-nav-item.active {
    height: calc(125px + 47px);
    background: #fff !important;
    transform: translateY(0px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.rectangle-nav-item-after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 5px;
    bottom: -5px;
    left: 0;
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
    border-radius: 0 0 4px 4px;
}

/* List container - ensure it takes full height */
.rectangle-nav-item .list {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
}

/* Button styling for rectangle items */
.rectangle-nav-see {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 100%;
    opacity: 0;
    width: 100%;
    height: 47px;
    text-align: center;
    border-radius: 0;
    transition: all 0.4s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rectangle-nav-see span {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    font-size: 14px;
    font-family: eurocaps, Arial, sans-serif;
    color: #fff;
    line-height: 47px;
    text-align: center;
    font-weight: bold;
}

.rectangle-nav-image {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.rectangle-nav-background {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.rectangle-nav-background-before,
.rectangle-nav-background-after {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.rectangle-nav-background-before .mid,
.rectangle-nav-background-after .mid {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.rectangle-nav-background-before .mid img,
.rectangle-nav-background-after .mid img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.rectangle-nav-background-before {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.rectangle-nav-background-after {
    opacity: 1;
    transition: opacity 0.4s ease;
}

/* Active state */
.rectangle-nav-item.active {
    background: #fff;
    transform: translateY(-47px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.rectangle-nav-item:hover {
    background: #fff;
    transform: translateY(-47px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.rectangle-nav-item:hover .rectangle-nav-see {
    top: calc(100% - 47px);
    opacity: 1;
    transition: all 0.4s ease;
}

.rectangle-nav-item.active .rectangle-nav-see {
    top: calc(100% - 47px);
    opacity: 1;
    transition: all 0.4s ease;
}

.rectangle-nav-item:hover .rectangle-nav-background-before {
    opacity: 1;
    transition: opacity 0.4s ease;
}

.rectangle-nav-item.active .rectangle-nav-background-before {
    opacity: 1;
    transition: opacity 0.4s ease;
}

.rectangle-nav-item:hover .rectangle-nav-background-before img {
    position: relative;
    top: -23.5px;
}

.rectangle-nav-item.active .rectangle-nav-background-before img {
    position: relative;
    top: -23.5px;
}

.rectangle-nav-item:hover .rectangle-nav-background-after {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.rectangle-nav-item.active .rectangle-nav-background-after {
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Mobile adjustments */
@media screen and (max-width: 940px) {
    .rectangle-nav-item {
        width: 170px;
        height: 100px;
    }

    .rectangle-nav-see {
        height: 40px;
    }

    .rectangle-nav-see span {
        line-height: 40px;
        font-size: 12px;
    }

    .rectangle-nav-item:hover {
        transform: translateY(-8px);
    }

    .rectangle-nav-item.active {
        transform: translateY(-8px);
    }

    .rectangle-nav-item:hover .rectangle-nav-see {
        top: calc(100% - 40px);
    }

    .rectangle-nav-item.active .rectangle-nav-see {
        top: calc(100% - 40px) !important;
    }
}

@media screen and (max-width: 768px) {
    .rectangle-nav-item {
        width: 135px;
        height: 70px !important;
    }

    .rectangle-nav-see {
        height: 35px;
    }

    .rectangle-nav-see span {
        line-height: 35px;
        font-size: 10px;
    }

    .rectangle-nav-item:hover {
        transform: translateY(-6px);
    }

    .rectangle-nav-item.active {
        transform: translateY(-6px);
    }

    .rectangle-nav-item:hover .rectangle-nav-see {
        top: calc(100% - 35px);
    }

    .rectangle-nav-item.active .rectangle-nav-see {
        top: calc(100% - 35px) !important;
    }

    .rectangle-nav-background-before .mid img,
    .rectangle-nav-background-after .mid img {
        max-width: 90%;
        max-height: 80%;
    }
}

@media screen and (max-width: 500px) {
    .rectangle-nav-item {
        width: 145px;
        height: 70px;
    }

    .rectangle-nav-item:nth-child(1),
    .rectangle-nav-item:nth-child(2) {
        margin-bottom: 8px;
    }

    .rectangle-nav-item:first-child {
        margin-left: 5px;
    }

    .rectangle-nav-item:nth-child(3) {
        margin-left: 5px;
    }

    .rectangle-nav-see {
        height: 35px;
    }

    .rectangle-nav-see span {
        line-height: 35px;
        font-size: 10px;
    }

    .rectangle-nav-item:hover {
        transform: translateY(-6px);
    }

    .rectangle-nav-item.active {
        transform: translateY(-6px);
    }

    .rectangle-nav-item:hover .rectangle-nav-see {
        top: calc(100% - 35px);
    }

    .rectangle-nav-item.active .rectangle-nav-see {
        top: calc(100% - 35px) !important;
    }
}

/* Inspiration Section Article Tiles - Fixed for Right Positioning */
.inspiration-articles-container {
    position: absolute;
    right: -200px;
    top: 150px;
    width: calc(424px * 3 + 40px);
    /* Width for 3 visible tiles */
    max-width: none;
    /* Remove max-width constraint */
    margin: 0;
    padding: 2rem 15px;
    overflow: visible;
    /* Allow overflow to see sliding tiles */
    background: transparent;
}

.inspiration-articles-slider {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
    width: calc(424px * 4 + 60px);
    /* Full width for all 4 tiles */
    min-width: calc(424px * 4 + 60px);
    transition: transform 0.3s ease;
    cursor: grab;
    user-select: none;
    transform: translateX(0);
    position: relative;
}

.inspiration-articles-slider:active {
    cursor: grabbing;
}

.inspiration-article-tile {
    position: relative;
    width: 400px;
    height: 450px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 0 0 424px;
    /* flex-grow: 0, flex-shrink: 0, flex-basis: 424px */
    background: #f8f9fa;
}

.inspiration-article-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.inspiration-article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.inspiration-article-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.68);
    min-height: 227px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    transition: all 0.3s ease;
}

.inspiration-article-title {
    color: white;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3;
    margin: 0;
    text-decoration: none;
    display: block;
}

.inspiration-article-title:hover {
    color: white;
    text-decoration: none;
}

/* Gradient overlay to indicate more content */
/*.inspiration-articles-container::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    right: 15px;*/
/*    width: 50px;*/
/*    height: 100%;*/
/*    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);*/
/*    pointer-events: none;*/
/*    z-index: 2;*/
/*}*/

/* See All Project Button */
.inspiration-see-all-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #ed1c24;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.inspiration-see-all-btn:hover {
    background: #000000;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3);
}

.inspiration-article-detail-btn {
    display: inline-block;
    padding: 15px 40px;
    background: tranparent;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    font-weight: 400;
    font-size: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

@media screen and (max-width: 768px) {
    .inspiration-see-all-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* Responsive adjustments for right-positioned horizontal layout */
@media screen and (max-width: 1400px) {
    .inspiration-articles-container {
        width: calc(380px * 3 + 40px);
        padding: 2rem 10px;
    }

    .inspiration-articles-slider {
        width: calc(380px * 4 + 60px);
        min-width: calc(380px * 4 + 60px);
    }

    .inspiration-article-tile {
        width: 380px;
        height: 625px;
        flex: 0 0 380px;
    }

    .inspiration-article-title {
        font-size: 22px;
    }
}

@media screen and (max-width: 1200px) {
    .inspiration-articles-container {
        width: calc(340px * 3 + 40px);
    }

    .inspiration-articles-slider {
        width: calc(340px * 4 + 60px);
        min-width: calc(340px * 4 + 60px);
    }

    .inspiration-article-tile {
        width: 340px;
        height: 560px;
        flex: 0 0 340px;
    }

    .inspiration-article-overlay {
        min-height: 200px;
        padding: 25px;
    }

    .inspiration-article-title {
        font-size: 20px;
    }
}

@media screen and (max-width: 768px) {
    .inspiration-articles-container {
        width: calc(195px * 3 + 30px);
    }

    .inspiration-articles-slider {
        width: calc(195px * 4 + 45px);
        min-width: calc(195px * 4 + 45px);
        gap: 15px;
    }

    .inspiration-article-tile {
        width: 195px;
        height: 321px;
        flex: 0 0 195px;
    }

    .inspiration-article-overlay {
        min-height: 160px;
        padding: 20px;
    }

    .inspiration-article-title {
        font-size: 18px;
    }
}

@media screen and (max-width: 480px) {
    .inspiration-articles-container {
        width: calc(280px * 2 + 20px);
        /* Show 2 tiles on very small screens */
        padding: 2rem 5px;
    }

    .inspiration-articles-slider {
        width: calc(280px * 4 + 30px);
        min-width: calc(280px * 4 + 30px);
        gap: 10px;
    }

    .inspiration-article-tile {
        width: 280px;
        height: 360px;
        flex: 0 0 280px;
    }

    .inspiration-article-overlay {
        min-height: 140px;
        padding: 15px;
    }

    .inspiration-article-title {
        font-size: 16px;
    }
}

/* Debug styles to ensure horizontal layout and visibility */
.inspiration-articles-slider {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow: visible !important;
    /* Allow tiles to be visible during slide */
}

.inspiration-article-tile {
    flex: 0 0 auto !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Find Your Product Section */
.find-product-section {
    background: #f8f9fa;
    padding: 80px 0;
    margin: 100px 0;
}

.find-product-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.find-product-title {
    text-align: center;
    color: #2c3e50;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    letter-spacing: 0.5px;
}

.find-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.find-product-item {
    background: white;
    border-radius: 0;
    padding: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 180px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background: #f1f3f4;
}

.find-product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.find-product-icon {
    width: 150px;
    height: 150px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.find-product-item:hover .find-product-icon {
    background: #e3f2fd;
}

.find-product-icon img {
    max-width: 150px;
    max-height: 150px;
    object-fit: contain;
}

.find-product-name {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    line-height: 1.3;
}

.find-product-see-all {
    text-align: center;
    margin-top: 30px;
}

.find-product-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #ed1c24;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.find-product-btn:hover {
    background: #000000;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3);
}

/* Responsive adjustments */
@media screen and (max-width: 1024px) {
    .find-product-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 25px;
    }

    .find-product-item:nth-child(7),
    .find-product-item:nth-child(8) {
        grid-column: span 1;
    }
}

@media screen and (max-width: 768px) {
    .find-product-section {
        padding: 60px 0;
        margin: 60px 0;
    }

    .find-product-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .find-product-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 20px;
    }

    .find-product-item {
        min-height: 150px;
        padding: 25px 15px;
    }

    .find-product-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .find-product-icon img {
        max-width: 45px;
        max-height: 45px;
    }

    .find-product-name {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .find-product-container {
        padding: 0 15px;
    }

    .find-product-title {
        font-size: 24px;
    }

    .find-product-grid {
        gap: 15px;
    }

    .find-product-item {
        min-height: 130px;
        padding: 20px 10px;
    }

    .find-product-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* Find Our Agent Section */
.home-find-agent-section {
    background: #f8f9fa;
    padding: 80px 0;
    margin: 0;
}

.find-agent-container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.find-agent-left {
    flex: 1;
    max-width: 500px;
}

.find-agent-right {
    flex: 1;
    max-width: 680px;
}

/* Accordion Styles */
.find-agent-accordion .accordion-item {
    background: white;
    border-radius: 0px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.accordion-item {
    border: none;
    margin-bottom: 0.125em;
}

/*.accordion-item:last-child {*/
/*    border-bottom: none;*/
/*}*/

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    color: #F01722;
}

.accordion-header:hover {
    background: #f8f9fa;
}

/*.accordion-item.active .accordion-header {*/
/*    background: #ed1c24;*/
/*    color: white;*/
/*}*/

.accordion-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #ed1c24;
    transition: color 0.3s ease;
}

/*.accordion-item.active .accordion-header h3 {*/
/*    color: white;*/
/*}*/

.accordion-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    font-size: 12px;
    color: #ed1c24;
    transition: all 0.3s ease;
    transform: rotate(0deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.accordion-item.active .accordion-icon {
    background: #ed1c24;
    border-color: #ed1c24;
    color: white;
    transform: rotate(90deg);
    box-shadow: 0 3px 6px rgba(220, 53, 69, 0.3);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
    color: #F01722;
}

.accordion-content ul {
    list-style-type: none;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
}

.accordion-content p {
    padding: 0 25px 20px 25px;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Right Side Content */
.find-agent-content {
    padding-left: 20px;
}

.find-agent-title {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.find-agent-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
}

.find-agent-image {
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.find-agent-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .find-agent-container {
        gap: 40px;
    }

    .find-agent-title {
        font-size: 36px;
    }
}

@media screen and (max-width: 768px) {
    .home-find-agent-section {
        padding: 60px 0;
    }

    .find-agent-container {
        flex-direction: column;
        gap: 40px;
    }

    .find-agent-left,
    .find-agent-right {
        max-width: 100%;
    }

    .find-agent-content {
        padding-left: 0;
    }

    .find-agent-title {
        font-size: 32px;
        text-align: center;
    }

    .find-agent-subtitle {
        text-align: center;
        font-size: 15px;
    }

    .accordion-header {
        padding: 18px 20px;
    }

    .accordion-header h3 {
        font-size: 15px;
    }

    .accordion-content p {
        padding: 0 20px 18px 20px;
        font-size: 13px;
    }
}

@media screen and (max-width: 480px) {
    .find-agent-container {
        padding: 0 15px;
    }

    .find-agent-title {
        font-size: 28px;
    }

    .find-agent-subtitle {
        font-size: 14px;
    }

    .accordion-header {
        padding: 15px 18px;
    }

    .accordion-header h3 {
        font-size: 14px;
    }
}

.custom-home-about-container {
    padding: 300px 0px 15px;
    background: #F4F4F4 url(../../img/front/home/background-home-about.png) center top/100vw auto no-repeat;
}

.custom-home-about {
    position: relative;
    display: block;
    width: 100%;
    max-width: 1270px;
    border: none;
    font-size: 0;
    margin: 0 auto 50px;
    padding-left: 90px;
    background-color: #ffffff;
    min-height: 625px;
}

.custom-home-about-item {
    padding: 20px 0px;
    position: relative;
    display: inline-block;
    vertical-align: top;
}

.custom-home-about-slide {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible !important;
}

.custom-home-about-slide li {
    position: relative;
    height: 100%;
    width: 100%;
}

.custom-home-about-slide-image {
    position: absolute !important;
    display: block !important;
    width: auto !important;
    margin: 0 auto !important;
    float: none !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, 30%) !important;
    max-height: 420px !important;
    max-width: 420px !important;
}

.custom-home-about-item:last-child {
    width: 615px;
    background: url(../../img/front/home/lock_device_image.png) no-repeat;
    background-size: 180px auto !important;
    background-position: 50% !important;
}

.custom-home-about-item:last-child:before {
    content: "";
    z-index: 10;
    position: absolute;
    display: block;
    left: 5%;
    top: 0;
    width: 214px;
    height: 217px;
    background: url(../../img/front/home/premium_quality_icon.png) no-repeat;
    background-size: contain !important;
    background-position: 50% !important;
    -webkit-transform: rotate(-15deg);
    -moz-transform: rotate(-15deg);
    -ms-transform: rotate(-15deg);
    transform: rotate(-15deg)
}

.custom-home-about-item:first-child {
    width: calc(100% - 615px);
    padding: 0 0 0 78px
}

.custom-home-about-list {
    position: relative;
    display: block;
    width: 100%;
    min-height: 40px;
    line-height: 22px;
    margin-bottom: 30px;
    font-size: 16px;
    color: #222;
    font-style: italic;
    font-family: roboto
}

.custom-home-about-list:first-child {
    margin-top: 61px
}

.custom-home-about-list:nth-child(4) {
    margin-bottom: 35px
}

.custom-home-about-list strong {
    font-size: 30px;
    font-style: normal !important;
    font-weight: 600;
}

.custom-home-about-list p {
    font-size: 20px;
    font-style: normal !important;
}

.custom-home-about-list:before {
    content: '';
    position: absolute;
    display: block;
    width: 70px;
    height: 70px;
    left: -90px;
}

.custom-home-about-list.quality:before {
    background: url(../../img/front/home/Quality.svg) no-repeat;
    background-position: 50% !important;
    background-size: contain !important
}

.custom-home-about-list.warranty:before {
    background: url(../../img/front/home/Warranty.svg) no-repeat;
    background-position: 50% !important;
    background-size: contain !important
}

.custom-home-about-list.affordable:before {
    background: url(../../img/front/home/Affordable.svg) no-repeat;
    background-position: 50% !important;
    background-size: contain !important
}

.custom-home-about-list.design:before {
    background: url(../../img/front/home/Design.svg) no-repeat;
    background-position: 50% !important;
    background-size: contain !important
}

.custom-home-about-link {
    position: relative;
    display: block;
    width: calc(100% - (78px * 2));
    max-width: 360px;
    height: 50px;
    background: #ed1c24;
    color: #fff;
    line-height: 52px;
    text-align: center;
    margin-bottom: 65px;
    font-size: 16px;
    font-family: eurocaps;
    color: #fff;
    overflow: hidden;
    padding-left: 0;
    -webkit-transition: padding-left .6s, background .6s;
    -moz-transition: padding-left .6s, background .6s;
    -ms-transition: padding-left .6s, background .6s;
    transition: padding-left .6s, background .6s
}

.custom-home-about-link:hover {
    background: #222;
    -webkit-transition: padding-left .6s, background .6s;
    -moz-transition: padding-left .6s, background .6s;
    -ms-transition: padding-left .6s, background .6s;
    transition: padding-left .6s, background .6s
}

.custom-home-about-link:after {
    content: "";
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-left: 5px;
    width: 15px;
    height: 11px;
    top: calc((100% - 11px)/ 2);
    background: url(../../img/front/home/right_arrow_icon.png)
}

.custom-home-about-link-new:after {
    float: inline-end !important;
    margin-right: 0.75rem !important;
    top: -65%;
    width: 22px;
    height: 14px;
}

/* Custom Testimonial Section */
.custom-home-tes {
    position: relative;
    display: block;
    padding: 80px 20px 200px;
    background: url(../../img/front/home/indonesia_maps.png) no-repeat;
    background-size: contain !important;
    background-position: left 0 bottom 63px !important;
}

.custom-home-tes-content {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 20px;
}

.custom-home-tes-header {
    text-align: left;
    margin-bottom: 60px;
    display: flex;
    justify-content: space-between;
}

.custom-home-tes-header div:nth-of-type(1) {
    max-width: 60%;
}

.custom-home-tes-title {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.custom-home-tes-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.custom-home-tes-see-all-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #ed1c24;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.custom-home-tes-see-all-btn:hover {
    background: #000000;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3);
}

.custom-home-tes-people-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.custom-home-tes-people-item {
    background: white;
    border-radius: 0;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: none;
    height: auto;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.custom-home-tes-people-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.custom-home-tes-quote {
    flex: 1;
    margin-bottom: 20px;
}

.custom-home-tes-quote p {
    font-size: 20px;
    line-height: 1.6;
    color: #373642;
    margin: 0;
}

.custom-home-tes-quote p {
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4em;
    max-height: calc(1.4em * 7);
    /* 7 lines * line-height */
}

/* Fallback for browsers that don't support -webkit-line-clamp */
@supports not (-webkit-line-clamp: 7) {
    .custom-home-tes-quote p {
        max-height: calc(1.4em * 7);
        overflow: hidden;
        position: relative;
    }

    .custom-home-tes-quote p::after {
        content: "...";
        position: absolute;
        bottom: 0;
        right: 0;
        background: white;
        padding-left: 20px;
        background: linear-gradient(to right, transparent, white 50%);
    }
}

.custom-home-tes-author {
    background: #222222;
    color: white;
    padding: 20px;
    margin: -30px -30px -30px -30px;
    margin-top: 20px;
}

.custom-home-tes-name {
    display: block;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
}

.custom-home-tes-location {
    display: block;
    font-size: 20px;
    margin-bottom: 10px;
}

.custom-home-tes-rating {
    color: #ffd700;
    font-size: 16px;
    letter-spacing: 2px;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .custom-home-tes-people-group {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .custom-home-tes-title {
        font-size: 36px;
    }
}

@media screen and (max-width: 768px) {
    .custom-home-tes {
        padding: 60px 20px 150px;
    }

    .custom-home-tes-people-group {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .custom-home-tes-title {
        font-size: 32px;
        text-align: center;
    }

    .custom-home-tes-header {
        text-align: center;
        max-width: 100%;
        flex-direction: column;
    }

    .custom-home-tes-header div:nth-of-type(1) {
        max-width: 100%;
    }

    .custom-home-tes-subtitle {
        text-align: center;
        font-size: 15px;
        margin-bottom: 20px;
    }

    .custom-home-tes-see-all-btn {
        align-self: center;
        margin-top: 10px;
    }
}

@media screen and (max-width: 480px) {
    .custom-home-tes-content {
        padding: 0 15px;
    }

    .custom-home-tes-title {
        font-size: 28px;
    }

    .custom-home-tes-subtitle {
        font-size: 14px;
    }

    .custom-home-tes-people-item {
        padding: 25px 20px;
        min-height: 180px;
    }

    .custom-home-tes-author {
        padding: 15px 20px;
        margin: -25px -20px -25px -20px;
        margin-top: 15px;
    }
}

/* Keep existing agent section styles */

.custom-home-tes-agent {
    position: relative;
    display: block;
    width: 445px;
    height: 100px;
    background: #ed1c24;
    color: #fff;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 3px 5px #222;
    padding-left: 0;
    overflow: hidden;
    -webkit-transform: skewX(-10deg);
    -moz-transform: skewX(-10deg);
    -ms-transform: skewX(-10deg);
    transform: skewX(-10deg);
    -webkit-transition: padding-left .6s, background .6s;
    -moz-transition: padding-left .6s, background .6s;
    -ms-transition: padding-left .6s, background .6s;
    transition: padding-left .6s, background .6s
}

.custom-home-tes-agent:hover {
    background: #222;
    -webkit-transition: padding-left .6s, background .6s;
    -moz-transition: padding-left .6s, background .6s;
    -ms-transition: padding-left .6s, background .6s;
    transition: padding-left .6s, background .6s
}

.custom-home-tes-agent:after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 10px;
    background: #222;
    bottom: 0;
    left: 0;
    box-shadow: 0 3px 5px #b8b8b8
}

.custom-home-tes-agent span {
    position: relative;
    display: block
}

.custom-home-tes-agent span span:first-child {
    font-size: 30px;
    font-family: eurocaps;
    letter-spacing: 2px;
    line-height: 17px;
    margin-bottom: 5px;
    font-style: normal !important
}

.custom-home-tes-agent span span:first-child:after {
    content: "";
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 15px;
    height: 11px;
    top: 2px;
    background: url(../../img/front/home/right_arrow_icon.png) no-repeat;
    background-position: 50% !important;
    background-size: contain !important
}

.custom-home-tes-agent span span:last-child {
    font-size: 14px;
    font-family: roboto;
    font-style: italic;
    line-height: 24px
}


/* Join Us Section */
.home-join-us-section {
    position: relative;
    padding: 80px 0 0;
    background: url('/img/front/home/bg-join-us.png') center center / cover no-repeat;
    overflow: hidden;
}

.home-join-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.join-us-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

.join-us-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.join-us-text {
    flex: 1;
    max-width: 600px;
}

.join-us-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 24px 0;
    line-height: 1.2;
    font-family: eurocaps, Arial, sans-serif;
}

.join-us-description {
    font-size: 18px;
    color: #fff;
    line-height: 1.6;
    margin: 0 0 32px 0;
    opacity: 0.9;
}

.join-us-btn {
    display: inline-block;
    background: #ed1c24;
    color: #fff;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #ed1c24;
}

.join-us-btn:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.join-us-image {
    flex-shrink: 0;
    max-width: 600px;
}

.join-us-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive Design for Join Us Section */
@media screen and (max-width: 1024px) {
    .join-us-content {
        gap: 40px;
    }

    .join-us-title {
        font-size: 40px;
    }

    .join-us-image {
        max-width: 300px;
    }
}

@media screen and (max-width: 768px) {
    .home-join-us-section {
        padding: 60px 0;
    }

    .join-us-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .join-us-text {
        order: 2;
    }

    .join-us-image {
        order: 1;
        max-width: 250px;
        margin: 0 auto;
    }

    .join-us-title {
        font-size: 32px;
    }

    .join-us-description {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .home-join-us-section {
        padding: 40px 0;
    }

    .join-us-container {
        padding: 0 15px;
    }

    .join-us-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .join-us-description {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .join-us-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .join-us-image {
        max-width: 200px;
    }
}

/* Mobile Improvements */
/* 1. Inspiration Section Mobile Background Size and Swipe */
@media screen and (max-width: 768px) {

    /* Make home-inspiration-section background 20% smaller */
    .home-inspiration-section {
        background-size: 80% !important;
        background-position: 0% 25% !important;
    }

    /* Make inspiration-article-tiles swipeable on mobile */
    .inspiration-articles-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* IE and Edge */
    }

    .inspiration-articles-container::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari, Opera */
    }

    .inspiration-article-tile {
        touch-action: pan-x;
    }
}

/* 2. CTA Section Mobile Styles */
.home-cta-section {
    background: #ECECEC;
    padding: 60px 20px;
    text-align: center;
}

.home-cta-section h2 {
    color: #100F1B;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.find-product-btn {
    display: inline-block;
    background: #ED1C24;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.find-product-btn:hover {
    background: #d41820;
    text-decoration: none;
    color: white;
}

@media screen and (max-width: 768px) {
    .home-cta-section {
        padding: 40px 15px;
    }

    .home-cta-section h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .find-product-btn {
        display: block;
        width: fit-content;
        margin: 0 auto;
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .home-cta-section h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .find-product-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* 3. Find Agent Section - Reorder on Mobile */
@media screen and (max-width: 768px) {
    .find-agent-container {
        display: flex;
        flex-direction: column;
    }

    .find-agent-right {
        order: -1;
        /* Move find-agent-right above find-agent-left */
        margin-bottom: 30px;
    }

    .find-agent-left {
        order: 1;
    }
}

/* 4. Custom Home About Section - Reorder on Mobile */
@media screen and (max-width: 768px) {
    .custom-home-about-item:last-child:before {
        max-width: 140px;
        max-height: 140px;
    }

    .custom-home-about-container {
        padding: 180px 0px 15px;
    }

    .custom-home-about {
        display: flex;
        flex-direction: column;
        padding-left: 20px;
        padding-right: 20px;
        position: relative;
        min-height: auto;
    }

    .custom-home-about-item:first-child {
        order: 2;
        /* Move text content below images */
        width: 100%;
        padding-left: 20px;
        padding-top: 40px;
        /* Add space between image and text */
        position: relative;
    }

    .custom-home-about-item:last-child {
        order: 1;
        /* Move images above text content */
        width: 100%;
        height: 300px;
        /* Fixed height for image container */
        margin-bottom: 0;
        background-position: center !important;
        background-size: auto 200px !important;
        position: relative;
        z-index: 1;
    }

    /* Ensure slide images are contained within their container */
    .custom-home-about-slide {
        height: 300px !important;
        overflow: hidden;
    }

    .custom-home-about-slide-image {
        max-height: 250px !important;
        max-width: 250px !important;
        transform: translate(-50%, -50%) !important;
        top: 50% !important;
        left: 50% !important;
    }

    .custom-home-about-list:before {
        left: -40px;
        width: 40px;
        height: 40px;
    }

    .custom-home-about-list {
        padding-left: 20px;
        position: relative;
        z-index: 2;
    }

    .custom-home-about-list strong {
        font-size: 24px;
    }

    .custom-home-about-list p {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .custom-home-about-container {
        padding: 100px 0px 15px;
    }

    .custom-home-about {
        padding-left: 10px;
        padding-right: 10px;
    }

    .custom-home-about-item:first-child {
        padding-left: 40px;
        padding-top: 0px;
        padding-right: 20px;
    }

    .custom-home-about-item:last-child {
        height: 250px;
        /* Smaller height for very small screens */
        background-size: auto 150px !important;
    }

    .custom-home-about-slide {
        height: 250px !important;
    }

    .custom-home-about-slide-image {
        max-height: 200px !important;
        max-width: 200px !important;
    }

    .custom-home-about-list:before {
        left: -35px;
        width: 30px;
        height: 30px;
    }

    .custom-home-about-list {
        padding-left: 10px;
        margin-bottom: 25px;
    }

    .custom-home-about-list strong {
        font-size: 20px;
    }

    .custom-home-about-list p {
        font-size: 14px;
    }

    .custom-home-about-link {
        width: calc(100% - 20px);
        margin-left: 10px;
        margin-right: 10px;
    }
}

/* Home Redesign Page Styles */
.home-container {
    padding-top: 105px;
}

.shop-button {
    text-align: center;
    width: 100%;
}

.shop-button .custom-home-about-link {
    text-align: center;
    margin: 0 auto 100px;
}

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

.top-brands-award {
    width: 100%;
    max-width: 1270px;
    margin: 15px auto 200px;
}

.top-brands-award img {
    width: 20%;
    float: left;
    margin-right: 20px;
}

.top-brands-award h2 {
    padding-top: 25px;
}

.pr-list {
    width: 100%;
    max-width: 1270px;
}

.pr-list img {
    height: 30px;
    width: auto;
    margin: 15px;
}

@media screen and (max-width: 480px) {
    .top-brands-award {
        width: 96%;
        padding-left: 2%;
        padding-right: 2%;
        text-align: center;
    }

    .top-brands-award a {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .top-brands-award img {
        width: 70%;
        margin-left: auto;
        margin-right: auto;
        float: none;
        text-align: center;
    }
}

.video-container {
    text-align: center;
    margin-bottom: 140px;
    margin-top: -100px;
}

.embedded-video-16-9 {
    width: 90vw;
    height: calc(90vw * (9 / 16)); /* 90*9/16 */
    margin-left: 5vw;
    margin-right: 5vw;
}

@media (min-width: 893px) {
    .embedded-video-16-9 {
        width: 75vw;
        height: calc(75vw * (9 / 16)); /* 45*9/16 */
        margin-left: 2vw;
        margin-right: 2vw;
        border-radius: 16px;
    }
}

.video-overflow-bg {
    background: #222222 url("../../img/front/home/globe-map.svg") no-repeat center center;
    min-height: 100vh;
    /*transform: translateY(-50vh);*/
    margin-top: -50vh;
    position: relative;
    z-index: -1;
    text-align: center;
    padding: 0px;
}

.video-overflow-bg div h2 {
    position: relative;
    top: 375px;
    color: white;
    font-size: 38px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.video-overflow-bg div p {
    position: relative;
    top: 375px;
    color: white;
    font-size: 20px;
    letter-spacing: 1.2px;
}

@media screen and (max-width: 480px) {
    .video-overflow-bg div h2 {
        position: relative;
        top: 35vh;
        color: white;
        font-size: 24px;
        font-weight: 800;
        letter-spacing: 1.2px;
    }

    .video-overflow-bg div p {
        position: relative;
        top: 35vh;
        color: white;
        font-size: 18px;
        letter-spacing: 1.2px;
    }
}

.video-overflow-bg div,
.home-inspiration-section > div,
.home-tes > div {
    max-width: 1380px;
    margin: 0px auto;
    padding: 3em 15px;
}

.home-inspiration-section {
    background: #FFFFFF url("../../img/front/home/bg-inspiration.png") no-repeat center left;
    min-height: 795px;
}

.home-cta-section {
    background: url("../../img/front/home/bg-cta.png") no-repeat center left;
    background-size: cover;
    min-height: 280px;
    position: relative;
}

.home-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.home-cta-section > div {
    max-width: 1380px;
    margin: 0px auto;
    padding: 3em 15px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
    z-index: 2;
}

.home-cta-section h2 {
    color: white;
    font-size: 38px;
    font-weight: 800;
}

/* Video Banner Styles */
.home-video-banner {
    width: 100%;
    height: 115vh;
    min-height: 400px;
    position: relative;
    overflow: hidden;
    background: #000;
}

.home-video-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    border: none;
}

@media screen and (max-width: 768px) {
    .home-video-banner {
        height: 50vh;
        min-height: 300px;
    }
    .home-slide-nav-group {
        margin-top: -100px;
    }
}

@media screen and (max-width: 480px) {
    .home-container {
        padding-top: 200px;
    }
    .home-video-banner {
        height: 35vh;
        min-height: 250px;
    }
    .home-slide-nav-group {
        margin-top: -45px;
        margin-bottom: 25px;
    }
    .home-video-iframe {
        min-width: 100vw;
    }
}

/* Navigation Link Styles */
.rectangle-nav-full-link,
.rectangle-nav-full-link-mobile {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

.rectangle-nav-full-link:hover,
.rectangle-nav-full-link-mobile:hover {
    text-decoration: none;
    color: inherit;
}

/* Product Detail Page Redesign */
.product-detail-wrapper {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #ffffff;
    min-height: 100vh;
    margin-top: 160px;
}

.product-detail-container {
    max-width: 1380px;
    margin: -40px auto 0;
    padding: 40px 20px;
}

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

/* Images Section */
.product-images-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image-container {
    position: relative;
    width: 100%;
    max-width: 625px;
    max-height: 625px;
    border-radius: 12px;
    overflow: hidden;
    background: #f8f9fa;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.main-product-image {
    width: 100%;
    height: 100%;
    max-width: 625px;
    max-height: 625px;
    object-fit: cover;
    display: none;
    border-radius: 12px;
}

.main-product-image.active {
    display: block;
}

.thumbnail-images {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.thumbnail-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.thumbnail-image:hover {
    border-color: #ed1c24;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Product Info Section */
.product-info-section {
    padding: 20px 0;
}

.product-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1d23;
    margin: 0 0 32px 0;
    line-height: 1.2;
    font-family: 'Inter', sans-serif;
}

.product-short-desc {
    margin-bottom: 40px;
}

.product-short-desc h3 {
    font-size: 18px;
    font-weight: 600;
    color: #374151;
    margin: 0 0 12px 0;
    font-family: 'Inter', sans-serif;
}

.product-short-desc p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* Action Buttons */
.product-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    width: 100%;
    max-width: 400px;
}

.action-btn.primary {
    background: #22c55e;
    color: white;
}

.action-btn.primary:hover {
    background: #16a34a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.action-btn.secondary {
    background: #f97316;
    color: white;
}

.action-btn.secondary:hover {
    background: #ea580c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.action-btn.contact {
    background: #ed1c24;
    color: white;
}

.action-btn.contact:hover {
    background: #dc2626;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(237, 28, 36, 0.3);
    text-decoration: none;
    color: white;
}

.action-btn .icon {
    font-size: 18px;
    margin-left: 8px;
}

/* Tabs Section */
.product-tabs-section {
    margin-top: 60px;
}

.tab-headers {
    display: flex;
    border-bottom: 2px solid #e5e7eb;
    margin-bottom: 32px;
}

.tab-button {
    background: none;
    border: none;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    color: #6b7280;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.2s ease;
    position: relative;
}

.tab-button.active {
    color: #1a1d23;
    border-bottom-color: #ed1c24;
}

.tab-button:hover {
    color: #374151;
}

.tab-contents {
    position: relative;
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1d23;
    margin: 0 0 24px 0;
    font-family: 'Inter', sans-serif;
}

.product-description,
.product-specifications {
    font-size: 16px;
    line-height: 1.7;
    color: #374151;
    font-family: 'Inter', sans-serif;
}

.product-description p,
.product-specifications p {
    margin-bottom: 16px;
}

.product-description ul,
.product-specifications ul {
    margin: 16px 0;
    padding-left: 24px;
}

.product-description li,
.product-specifications li {
    margin-bottom: 8px;
    color: #374151;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-detail-wrapper {
        padding-top: 100px;
    }

    .product-detail-container {
        padding: 30px 15px;
    }

    .product-detail-content {
        gap: 40px;
    }

    .main-image-container {
        max-width: 500px;
        max-height: 500px;
    }
}

@media (max-width: 768px) {
    .product-detail-wrapper {
        padding-top: 80px;
    }

    .product-detail-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .main-image-container {
        max-width: 100%;
        max-height: 400px;
    }

    .product-title {
        font-size: 28px;
    }

    .tab-headers {
        flex-wrap: wrap;
    }

    .tab-button {
        flex: 1;
        min-width: 150px;
    }
}

@media (max-width: 480px) {
    .product-detail-wrapper {
        padding-top: 70px;
    }

    .product-detail-container {
        padding: 20px 10px;
    }

    .thumbnail-image {
        width: 60px;
        height: 60px;
    }

    .product-title {
        font-size: 24px;
    }

    .action-btn {
        padding: 14px 20px;
        font-size: 14px;
    }

    .tab-button {
        padding: 12px 16px;
        font-size: 14px;
    }
}

/* Product Listing Page Styles */
.product-listing-wrapper {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #ffffff;
    min-height: 100vh;
    padding-top: 170px;
}

.product-listing-container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0px 20px 40px;
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1d23;
    margin: 0 0 16px 0;
    font-family: 'Inter', sans-serif;
}

.page-subtitle {
    font-size: 18px;
    color: #6b7280;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* Brand Tabs Section */
.brand-tabs-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    background: transparent;
    padding: 0;
    border-bottom: 1px solid #e5e7eb;
}

.brand-tabs {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.brand-tab {
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: #6b7280;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.brand-tab:hover {
    color: #ed1c24;
    border-bottom-color: rgba(237, 28, 36, 0.3);
}

.brand-tab.active {
    color: #ed1c24;
    border-bottom-color: #ed1c24;
    font-weight: 600;
}


/* Brand Banner */
.brand-banner-section {
    margin-bottom: 50px;
}

.brand-banner {
    background: #f1f5f9;
    border-radius: 16px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 300px;
}

.brand-banner-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e2e8f0;
    padding: 40px;
}

.brand-banner-img {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
}

.brand-banner-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-logo {
    margin-bottom: 20px;
}

.brand-logo-img {
    max-height: 60px;
    max-width: 200px;
    object-fit: contain;
}

.brand-description {
    font-family: 'Inter', sans-serif;
}

.brand-description p {
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 16px;
}

/* Products Grid */
.products-grid-section {
    margin-bottom: 60px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.product-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.product-card-image {
    width: 100%;
    height: 315px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-image-placeholder {
    color: #9ca3af;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

.product-card-content {
    padding: 20px;
}

.product-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1d23;
    margin: 0 0 8px 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.3;
}

.product-card-price {
    font-size: 16px;
    font-weight: 600;
    color: #ed1c24;
    margin: 0 0 16px 0;
    font-family: 'Inter', sans-serif;
}

.product-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ed1c24;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    transition: all 0.2s ease;
    width: 100%;
}

.product-card-btn:hover {
    background: #dc2626;
    text-decoration: none;
    color: #ffffff;
    transform: translateY(-1px);
}

/* Pagination */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    width: 100%;
    text-align: center;
}

.pagination-container .pagination {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.pagination-container .pagination li {
    list-style: none;
}

.pagination-container .pagination a,
.pagination-container .pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border: 1px solid #e5e7eb;
    color: #6b7280;
    text-decoration: none;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: all 0.2s ease;
}

.pagination-container .pagination a:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
    text-decoration: none;
}

.pagination-container .pagination .active span {
    background: #ed1c24;
    color: #ffffff;
    border-color: #ed1c24;
}

/* No Products */
.no-products {
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
    font-family: 'Inter', sans-serif;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-listing-wrapper {
        padding-top: 100px;
    }

    .product-listing-container {
        padding: 30px 15px;
    }

    .page-title {
        font-size: 40px;
    }

    .brand-banner {
        grid-template-columns: 1fr;
    }

    .brand-tabs-section {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .product-listing-wrapper {
        padding-top: 80px;
    }

    .page-title {
        font-size: 32px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    .brand-tabs {
        justify-content: center;
        flex-wrap: wrap;
    }

    .brand-tab {
        padding: 14px 24px;
        font-size: 15px;
    }

    .brand-banner-content {
        padding: 30px 20px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .product-listing-wrapper {
        padding-top: 70px;
    }

    .product-listing-container {
        padding: 20px 10px;
    }

    .page-title {
        font-size: 28px;
    }

    .brand-tabs {
        flex-direction: row;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }

    .brand-tab {
        flex: 0 0 auto;
        text-align: center;
        padding: 12px 4px;
        font-size: 13px;
        min-width: auto;
        white-space: nowrap;
    }

    .brand-banner-content {
        padding: 20px 15px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
}/* Contact us */
.con-container {
    max-width: 1380px;
    margin: 100px auto 0px;
    padding: 60px 0px 20px;
}

/* Breadcrumbs Styling */
.breadcrumbs-container {
    max-width: 1380px;
    margin: 0 auto 20px;
    padding: 0 28px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-family: "Figtree", Arial, sans-serif;
    color: #6B7280;
    padding: 12px 0;
}

.breadcrumb-link {
    color: #6B7280;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #000;
    text-decoration: none;
}

.breadcrumb-separator {
    margin: 0 12px;
    color: #6B7280;
    font-weight: 400;
}

.breadcrumb-current {
    color: #374151;
    font-weight: 500;
}

/* Responsive breadcrumbs */
@media screen and (max-width: 768px) {
    .breadcrumbs-container {
        margin-bottom: 30px;
        padding: 0 20px;
    }

    .breadcrumbs {
        font-size: 13px;
        padding: 10px 0;
    }

    .breadcrumb-separator {
        margin: 0 8px;
    }

    .con-container {
        margin-top: 250px;
    }
}

@media screen and (max-width: 480px) {
    .breadcrumbs-container {
        margin-bottom: 20px;
        padding: 0 15px;
    }

    .breadcrumbs {
        font-size: 12px;
        padding: 8px 0;
    }

    .breadcrumb-separator {
        margin: 0 6px;
    }

    .con-container {
        margin-top: 190px;
    }
}
.con-title {
    position: relative;
    display: block;
    width: 100%;
    height: 70px;
    padding: 0;
    background: none;
    background-size: cover !important;
    background-position: 50% !important;
    text-align: center;
    margin-bottom: 73px;
}
.con-title-item {
    position: relative;
    display: block;
    color: #1F2937;
    width: 100%;
    font-weight: 400;
    max-width: 635px;
}
.con-title-item>:first-child {
    line-height: 30px;
    font-size: 48px;
    letter-spacing: 0px;
    font-family: "Figtree", Arial;
    margin-bottom: 20px;
}
.con-title-item>:last-child {
    line-height: 30px;
    font-size: 15px;
    font-family: "Figtree", Arial;
}
.con-group-title {
    position: relative;
    display: block;
    font-size: 1.2rem;
    font-family:  "Figtree", Arial;
    color: #111827;
    letter-spacing: 0px;
    line-height: 30px;
    margin-bottom: 5px;
}
.con-group-address,
.con-group-list {
    font-family: "Figtree", Arial;
    color: #374151;
}
.con-group-direction {
    border-radius: 8px;
}
.con-form-container {
    padding: 30px 30px 60px !important;
    background-color: #F9FAFB;
    border-radius: 10px;
    border: 1px solid #E5E7EB;
}
.con-text {
    background-color: #fff;
    border-radius: 7.2px;
    border: none;
    box-shadow: 1px 1px #ADAEBC;
}
.con-content {
    max-width: 1380px;
    padding: 0px 15px;
}

/* Form Labels Styling */
.con-form-container h2 {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 20px;
    margin-top: 0;
    font-family: "Figtree", Arial, sans-serif;
    text-align: left;
    line-height: 1.3;
}

.con-form-container label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
    margin-top: 15px;
    font-family: "Figtree", Arial, sans-serif;
    letter-spacing: 0.5px;
}

.con-form-container label:first-of-type {
    margin-top: 0;
}

/* Enhanced form styling */
.con-form {
    width: 100%;
}

.con-text {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    border: 1px solid #D1D5DB;
    padding: 0 15px;
    margin-bottom: 5px;
    font-size: 16px;
    font-family: "Figtree", Arial;
    color: #222;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    border-radius: 7.2px;
}

.con-text:focus {
    outline: none;
    border-color: #ed1c24;
    box-shadow: 0 0 0 3px rgba(237, 28, 36, 0.1);
}

.con-text.area {
    height: 145px;
    padding: 15px;
    resize: vertical;
    margin-bottom: 25px;
}

/* Submit button styling */
.con-submit {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    background: #ed1d25;
    color: #fff;
    font-family: "Figtree", Arial;
    font-size: 18px;
    font-weight: 600;
    border: 1px solid #ed1c25;
    border-radius: 7.2px;
    cursor: pointer;
    transition: background 0.4s, color 0.4s, transform 0.2s;
    margin-top: 20px;
    letter-spacing: 0.5px;
}

.con-submit:hover {
    background: #000;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(237, 28, 36, 0.3);
}
.con-group-title:before {
    content: '';
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 15px;
    height: 30px;
    margin-right: 5px;
    top: 50%;
    background: url(../../img/front/contact/pin_icon.png) no-repeat;
    background-position: 50% !important;
    background-size: contain !important;
    -webkit-transition: background .4s;
    -moz-transition: background .4s;
    -ms-transition: background .4s;
    transition: background .4s;
}
.con-group:first-of-type .con-group-desc {
    margin-left: 25px;
}
/* Responsive form styling */
@media screen and (max-width: 768px) {
    .con-form-container h2 {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .con-form-container label {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .con-text {
        font-size: 14px;
        height: 45px;
    }

    .con-text.area {
        height: 120px;
    }

    .con-submit {
        font-size: 16px;
        height: 45px;
    }
}

@media screen and (max-width: 480px) {
    .con-form-container {
        padding: 20px 20px 40px !important;
    }

    .con-form-container h2 {
        font-size: 18px;
        margin-bottom: 14px;
    }

    .con-form-container label {
        font-size: 13px;
        margin-bottom: 5px;
    }

    .con-text {
        font-size: 13px;
        height: 40px;
        padding: 0 12px;
    }

    .con-text.area {
        height: 100px;
        padding: 12px;
    }

    .con-submit {
        font-size: 16px;
        height: 40px;
    }
}
