body {
    color: #333;
    background-color: #f4f7f6;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    font-size: 16px;
}

.main-content-section {
    margin-top: 120px;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.content-container {
    width: 100%;
    max-width: 1100px;
    padding: 0px;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(224, 224, 224, 0.5);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.product-hero-image-in-box {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    margin-bottom: 30px;
    border-top-left-radius: 11px;
    border-top-right-radius: 11px;
    box-sizing: border-box;
}

.product-content-details {
    width: 100%;
    padding: 0 30px 30px;
    box-sizing: border-box;
}

.detail-section {
    margin-bottom: 25px;
}

.detail-section h3 {
    font-size: 1.4em;
    font-weight: 400;
    color: #3f556a;
    margin-bottom: 2px;
    margin-top: 50px;
    border-bottom: 2px solid rgba(224, 224, 224, 0.7);
    padding-bottom: 5px;
    display: inline-block;
    text-align: left;
    font-family: 'Inter', sans-serif;
}

.detail-section p {
    font-size: 1em;
    color: #4a4a4a;
    line-height: 1.7;
    margin-top: 15px;
    margin-bottom: 15px;
    text-align: left;
}

.catalog-button-container {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 0 30px 30px;
    box-sizing: border-box;
}

.catalog-link {
    background-color: transparent;
    backdrop-filter: blur(5px);
    color: #555;
    padding: 6px 10px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.8em;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: none;
    border: 1px solid rgba(137, 207, 240, 0.7);
    cursor: pointer;
}

.catalog-link:hover {
    background-color: rgba(137, 207, 240, 0.1);
    color: #444;
    border-color: rgba(137, 207, 240, 0.9);
}

.catalog-link:active {
    background-color: rgba(137, 207, 240, 0.05);
    color: #333;
    border-color: rgba(137, 207, 240, 1);
}

.catalog-link i {
    font-size: 0.9em;
}

.hero-text-section {
    padding: 60px 0;
    text-align: center;
    background-color: transparent;
}

.hero-text-section .container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-title1 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.7em;
    font-weight: 600;
    color: #000000;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    text-transform: capitalize;
}

.section-description1 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2em;
    color: #555;
    margin-bottom: 50px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-clover {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    position: relative;
    width: 60px;
    height: 60px;
    margin-left: auto;
    margin-right: auto;
}

.hero-clover i.fa-leaf {
    position: absolute;
    font-size: 30px;
    top: 50%;
    left: 50%;
    transform-origin: center center;
}

.hero-clover .leaf-1 {
    color: #FF0000;
    transform: translate(-50%, -50%) rotate(45deg) translate(-10px, -10px);
}

.hero-clover .leaf-2 {
    color: #0000FF;
    transform: translate(-50%, -50%) rotate(135deg) translate(-10px, -10px);
}

.hero-clover .leaf-3 {
    color: #008000;
    transform: translate(-50%, -50%) rotate(225deg) translate(-10px, -10px);
}

.hero-clover .leaf-4 {
    color: #000000;
    transform: translate(-50%, -50%) rotate(315deg) translate(-10px, -10px);
}

.product-categories-section {
    padding: 10px 0;
    text-align: center;
    background-color: transparent;
}

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

.single-product-showcase {
    width: 100%;
    max-width: 1200px;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(220, 220, 220, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto 60px auto;
    overflow: hidden;
}

.showcase-image {
    width: calc(100% + 60px);
    max-height: 600px;
    object-fit: cover;
    margin-top: -30px;
    margin-left: -30px;
    margin-right: -30px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.showcase-text-content {
    padding: 0 30px 30px 30px;
    text-align: center;
}

.showcase-text-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1em;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.explore-button-container {
    margin-top: 0;
    padding-bottom: 30px;
}

.explore-button {
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    backdrop-filter: blur(5px);
    color: #555;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1em;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: none;
    border: 1px solid rgba(137, 207, 240, 0.7);
    cursor: pointer;
}

.explore-button:hover {
    background-color: rgba(137, 207, 240, 0.1);
    color: #444;
    border-color: rgba(137, 207, 240, 0.9);
}

.explore-button:active {
    background-color: rgba(137, 207, 240, 0.05);
    color: #333;
    border-color: rgba(137, 207, 240, 1);
}

.explore-button i {
    font-size: 1.2em;
}

.text-shadow-lg {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.featured-video-section {
    max-width: 1400px;
    margin-top: 40px;
    margin-bottom: 40px;
    margin-left: 80px;
    margin-right: auto;
    padding: 35px;
    border-radius: 16px;
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(224, 224, 224, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.video-content-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 40px;
}

.video-thumbnail-container {
    flex-shrink: 0;
    width: 50%;
    position: relative;
    padding-bottom: 28.125%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.video-link {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.video-thumbnail-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

.play-button::before {
    content: '';
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent white;
    margin-left: 5px;
}

.video-link:hover .play-button {
    background-color: rgba(0, 0, 0, 0.8);
}

.text-content {
    flex-grow: 1;
    padding-left: 20px;
}

.text-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.0em;
    font-weight: 700;
    color: #3f556a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.text-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1em;
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
}

.video-iframe-wrapper {
    width: 50%;
    position: relative;
    padding-bottom: 28.125%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.video-iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.catalog-section {
    padding: 80px 0;
    text-align: center;
    max-width: 1400px;
    margin: 40px auto;
    box-sizing: border-box;
    background-color: transparent;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
}

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

.catalog-images-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.catalog-item {
    width: 200px;
    flex-shrink: 0;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(6px);
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid rgba(220, 220, 220, 0.4);
}

.catalog-item:hover {
    transform: none;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.catalog-item a {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 10px;
    overflow: hidden;
}

.catalog-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.section-title2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.8em;
    font-weight: 700;
    color: #3f556a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-description2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1em;
    color: #555;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.explore-all-catalogs-button-container {
    margin-top: 20px;
}

.explore-all-catalogs-button {
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: transparent;
    backdrop-filter: blur(5px);
    color: #555;
    padding: 10px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.95em;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: none;
    border: 1px solid rgba(137, 207, 240, 0.7);
    cursor: pointer;
}

.explore-all-catalogs-button:hover {
    background-color: rgba(137, 207, 240, 0.1);
    color: #444;
    border-color: rgba(137, 207, 240, 0.9);
}

.explore-all-catalogs-button:active {
    background-color: rgba(137, 207, 240, 0.05);
    color: #333;
    border-color: rgba(137, 207, 240, 1);
}

.explore-all-catalogs-button i {
    font-size: 1.1em;
}

.divider-line {
    height: 1px;
    width: 80%;
    background-color: rgba(0, 0, 0, 0.08);
    margin: 10px auto;
    border-radius: 5px;
}

.blog-section.no-animations .animate-fade-in-up {
    animation: none !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.blog-section {
    padding: 60px 0;
    text-align: center;
    background-color: transparent;
}

.blog-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-posts-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
    margin-bottom: 50px;
}

.blog-post-item.minimalist {
    width: calc(50% - 30px);
    max-width: 600px;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(6px);
    border-radius: 10px;
    border: 1px solid rgba(220, 220, 220, 0.4);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-align: left;
    padding: 20px;
}

.blog-post-item.minimalist:hover {
    transform: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.blog-post-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
}

.blog-post-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5em;
    font-weight: 600;
    color: #3f556a;
    margin-bottom: 10px;
    line-height: 1.3;
}

.blog-post-content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9em;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.detail-button.right {
    font-family: 'Inter', sans-serif;
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3b6ea2;
    text-decoration: none;
    font-size: 0.85em;
    font-weight: 600;
}

.detail-button.right:hover {
    color: #2c5282;
    transform: none;
}

.detail-button.right i {
    font-size: 0.85em;
}

.all-blogs-button-container {
    margin-top: 30px;
    text-align: center;
}

.blog-button {
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    backdrop-filter: blur(5px);
    color: #555;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1em;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: none;
    border: 1px solid rgba(137, 207, 240, 0.7);
    cursor: pointer;
}

.blog-button:hover {
    background-color: rgba(137, 207, 240, 0.1);
    color: #444;
    border-color: rgba(137, 207, 240, 0.9);
}

.blog-button:active {
    background-color: rgba(137, 207, 240, 0.05);
    color: #333;
    border-color: rgba(137, 207, 240, 1);
}

.blog-button i {
    font-size: 1.2em;
}

@media (max-width: 992px) {
    .showcase-text-content p {
        font-size: 0.95em;
        margin-bottom: 25px;
    }
    .content-container {
        max-width: 90%;
    }
    .product-hero-image-in-box {
        height: 350px;
    }
    .detail-section h3 {
        font-size: 1.3em;
        text-align: left;
    }
    .detail-section p {
        font-size: 0.95em;
    }
    .product-content-details {
        padding: 0 25px 25px;
    }
    .catalog-button-container {
        padding: 0 25px 25px;
    }
    .catalog-link {
        padding: 5px 8px;
        font-size: 0.75em;
        gap: 3px;
    }
    .featured-video-section {
        max-width: 90%;
        padding: 30px;
        margin-left: auto;
        margin-right: auto;
    }
    .video-content-container {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    .video-thumbnail-container {
        width: 100%;
        padding-bottom: 56.25%;
    }
    .text-content {
        padding-left: 0;
        text-align: center;
    }
    .text-content h2 {
        font-size: 1.8em;
    }
    .text-content p {
        font-size: 0.9em;
    }
    .hero-text-section .container {
        max-width: 95%;
        padding: 0 15px;
    }
    .section-title1 {
        font-size: 2em;
        letter-spacing: 0.04em;
        margin-bottom: 25px;
    }
    .section-description1 {
        font-size: 1.1em;
        max-width: 100%;
    }
    .catalog-section {
        padding: 60px 0;
        margin: 30px auto;
    }
    .catalog-images-wrapper {
        gap: 20px;
    }
    .catalog-item {
        width: 180px;
    }
    .catalog-item img {
        height: 270px;
    }
    .catalog-caption {
        font-size: 0.9em;
    }
    .catalog-text-area {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .explore-all-catalogs-button {
        padding: 9px 22px;
        font-size: 0.9em;
        gap: 6px;
    }
    .explore-button {
        padding: 10px 25px;
        font-size: 0.95em;
        gap: 8px;
    }
    .section-title2 {
        font-size: 2.2em;
    }
    .section-description2 {
        font-size: 1em;
    }
    .divider-line {
        margin: 30px auto;
        width: 90%;
    }
    .blog-section .container {
        max-width: 95%;
    }
    .blog-posts-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    .blog-post-item.minimalist {
        width: 90%;
        max-width: 450px;
        padding: 15px;
    }
    .blog-post-content h3 {
        font-size: 1.4em;
        margin-bottom: 8px;
    }
    .blog-post-content p {
        font-size: 0.85em;
        margin-bottom: 35px;
    }
    .detail-button.right {
        font-size: 0.8em;
        bottom: 15px;
        right: 15px;
    }
    .blog-button {
        padding: 10px 25px;
        font-size: 0.95em;
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .showcase-text-content p {
        font-size: 0.85em;
        margin-bottom: 25px;
    }
    .main-content-section {
        margin-top: 80px;
        padding-bottom: 40px;
    }
    .content-container {
        max-width: 95%;
        padding: 0px;
    }
    .product-hero-image-in-box {
        height: 280px;
    }
    .detail-section h3 {
        font-size: 1.2em;
    }
    .detail-section p {
        font-size: 0.9em;
    }
    .product-content-details {
        padding: 0 20px 20px;
    }
    .detail-section {
        margin-bottom: 20px;
    }
    .catalog-button-container {
        padding: 0 20px 20px;
    }
    .catalog-link {
        padding: 4px 7px;
        font-size: 0.7em;
        gap: 2px;
    }
    .featured-video-section {
        padding: 20px;
        margin-top: 30px;
        border-radius: 12px;
    }
    .text-content h2 {
        font-size: 1.6em;
    }
    .text-content p {
        font-size: 0.85em;
    }
    .hero-text-section .container {
        max-width: 100%;
        padding: 0 10px;
    }
    .section-title1 {
        font-size: 1.8em;
        letter-spacing: 0.03em;
        margin-bottom: 20px;
    }
    .section-description1 {
        font-size: 1em;
    }
    .catalog-section {
        padding: 40px 0;
        margin: 25px auto;
    }
    .catalog-images-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .catalog-item {
        width: 250px;
        height: auto;
        margin-bottom: 20px;
    }
    .catalog-item img {
        height: 375px;
    }
    .section-title2 {
        font-size: 1.8em;
    }
    .section-description2 {
        font-size: 0.9em;
    }
    .divider-line {
        margin: 25px auto;
        width: 95%;
    }
    .blog-section {
        padding: 40px 0;
    }
    .blog-posts-wrapper {
        gap: 20px;
    }
    .blog-post-item.minimalist {
        width: 95%;
        max-width: 400px;
        padding: 15px;
    }
    .blog-post-content h3 {
        font-size: 1.3em;
    }
    .blog-post-content p {
        font-size: 0.85em;
        margin-bottom: 40px;
    }
    .detail-button.right {
        font-size: 0.75em;
        bottom: 10px;
        right: 10px;
    }
    .blog-button {
        padding: 10px 25px;
        font-size: 0.95em;
        gap: 8px;
    }
    .explore-button {
        padding: 8px 20px;
        font-size: 0.9em;
        gap: 6px;
    }
    .explore-all-catalogs-button {
        padding: 7px 18px;
        font-size: 0.85em;
        gap: 5px;
    }
}

@media (max-width: 600px) {
    .product-hero-image-in-box {
        height: 220px;
    }
    .section-title1 {
        font-size: 1.6em;
        letter-spacing: 0.025em;
        margin-bottom: 18px;
    }
}

@media (max-width: 480px) {
    .detail-section h3 {
        font-size: 1.05em;
        padding-bottom: 4px;
        margin-bottom: 8px;
    }
    .detail-section p {
        font-size: 0.85em;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .product-content-details {
        padding: 0 15px 15px;
    }
    .detail-section {
        margin-bottom: 15px;
    }
    .catalog-button-container {
        padding: 0 15px 15px;
    }
    .catalog-link {
        padding: 3px 6px;
        font-size: 0.65em;
        gap: 2px;
    }
    .catalog-link i {
        font-size: 0.8em;
    }
    .product-hero-image-in-box {
        height: 180px;
        margin-bottom: 15px;
    }
    .featured-video-section {
        padding: 15px;
        margin-top: 25px;
    }
    .text-content h2 {
        font-size: 1.4em;
    }
    .text-content p {
        font-size: 0.8em;
    }
    .hero-text-section .container {
        padding: 0 5px;
    }
    .section-title1 {
        font-size: 1.4em;
        letter-spacing: 0.02em;
        margin-bottom: 15px;
    }
    .section-description1 {
        font-size: 0.9em;
    }
    .catalog-section {
        padding: 30px 0;
    }
    .catalog-item {
        width: 90%;
        max-width: 280px;
    }
    .catalog-item img {
        height: auto;
    }
    .section-title2 {
        font-size: 1.5em;
    }
    .section-description2 {
        font-size: 0.8em;
    }
    .divider-line {
        margin: 20px auto;
        width: 95%;
    }
    .blog-section {
        padding: 30px 0;
    }
    .blog-posts-wrapper {
        gap: 15px;
    }
    .blog-post-item.minimalist {
        width: 100%;
        max-width: none;
        padding: 15px;
        border-radius: 8px;
    }
    .blog-post-content h3 {
        font-size: 1.2em;
    }
    .blog-post-content p {
        font-size: 0.75em;
        margin-bottom: 45px;
    }
    .detail-button.right {
        font-size: 0.7em;
        bottom: 10px;
        right: 10px;
    }
    .blog-button {
        padding: 7px 18px;
        font-size: 0.85em;
        gap: 5px;
    }
    .explore-button {
        padding: 7px 18px;
        font-size: 0.85em;
        gap: 5px;
    }
    .explore-all-catalogs-button {
        padding: 6px 15px;
        font-size: 0.8em;
        gap: 4px;
    }
}