:root {
    --primary-color: #333333; /* Darker shade for primary color based on logo */
    --accent-color: #c1db00; /* Lime green from the logo */
    --secondary-color: #f4f4f4;
    --text-color: #333333;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Apply background pattern to the entire page */
html {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='%23a6ce39' fill-opacity='0.05' d='M11.1,44.9L0,33.8l30-30L44.9,18.7L33.8,29.8L44.9,40.9L33.8,52.1L44.9,63.2L33.8,74.3l30,30L18.9,63.2L30,52.1L18.9,40.9L30,29.8L18.9,18.7L33.8,3.8L3.8,33.8L11.1,41.1L0,52.2l11.1,11.1L0,74.3l11.1,11.1L0,96.5l11.1,11.1L0,118.7l30-30L18.9,77.6L30,66.5L18.9,55.4L30,44.3L18.9,33.2L30,22.1L18.9,11L30,0L0,30l11.1,11.1L0,52.2L11.1,63.3L0,74.4l11.1,11.1L0,96.6l11.1,11.1L0,118.8l30-30L18.9,77.7L30,66.6L18.9,55.5L30,44.4L18.9,33.3L30,22.2L18.9,11.1L30,0.1L0,30.1l11.1,11.1L0,52.3l11.1,11.1L0,74.5l11.1,11.1L0,96.7l11.1,11.1L0,118.9l30-30L18.9,77.8L30,66.7L18.9,55.6L30,44.5L18.9,33.4L30,22.3L18.9,11.2L30,0.2L0,30.2l11.1,11.1L0,52.4z'/%3E%3C/svg%3E");
    background-position: 0 0;
    background-attachment: fixed;
    background-blend-mode: soft-light;
    min-height: 100%;
}

body {
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section with geometric accents */
.hero {
    background: linear-gradient(135deg, #333333 25%, #222222 75%);
    color: var(--white);
    padding: 70px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Decorative elements inspired by the logo */
.hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(193, 219, 0, 0.15);
    transform: rotate(45deg);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--accent-color);
    box-shadow: 0 0 10px rgba(193, 219, 0, 0.5);
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero h1 span {
    color: var(--accent-color);
    position: relative;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-style: italic;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 14px 35px;
    text-decoration: none;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(193, 219, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(193, 219, 0, 0.4);
}

/* Product Info Section with decorative elements */
.product-info {
    padding: 80px 0;
    position: relative;
}

/* Logo-inspired decorative element */
.product-info::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 300px;
    height: 300px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='%23a6ce39' fill-opacity='0.05' d='M11.1,44.9L0,33.8l30-30L44.9,18.7L33.8,29.8L44.9,40.9L33.8,52.1L44.9,63.2L33.8,74.3l30,30L18.9,63.2L30,52.1L18.9,40.9L30,29.8L18.9,18.7L33.8,3.8L3.8,33.8L11.1,41.1L0,52.2l11.1,11.1L0,74.3l11.1,11.1L0,96.5l11.1,11.1L0,118.7l30-30L18.9,77.6L30,66.5L18.9,55.4L30,44.3L18.9,33.2L30,22.1L18.9,11L30,0L0,30l11.1,11.1L0,52.2L11.1,63.3L0,74.4l11.1,11.1L0,96.6l11.1,11.1L0,118.8l30-30L18.9,77.7L30,66.6L18.9,55.5L30,44.4L18.9,33.3L30,22.2L18.9,11.1L30,0.1L0,30.1l11.1,11.1L0,52.3l11.1,11.1L0,74.5l11.1,11.1L0,96.7l11.1,11.1L0,118.9l30-30L18.9,77.8L30,66.7L18.9,55.6L30,44.5L18.9,33.4L30,22.3L18.9,11.2L30,0.2L0,30.2l11.1,11.1L0,52.4z'/%3E%3C/svg%3E");
    background-size: 20px 20px;
    opacity: 0.2;
    z-index: -1;
    border-radius: 100% 0 0 0;
}

/* Fixed product flex layout to ensure image size stays consistent */
.product-flex {
    display: flex;
    align-items: flex-start; /* Changed from center to flex-start */
    gap: 50px;
}

.product-image {
    flex: 0 0 45%; /* Fixed width percentage instead of flex-grow */
    min-width: 300px; /* Minimum width to prevent excessive shrinking */
    max-height: 500px; /* Maximum height */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    align-self: flex-start; /* Ensures image stays at the top */
    position: sticky; /* Makes image sticky when scrolling through long text */
    top: 20px;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background-color: var(--accent-color);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    z-index: 1;
}

.product-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #ddd;
    transition: all 0.5s ease;
    object-fit: cover; /* Ensures image covers the area nicely */
}

.product-image:hover img {
    transform: scale(1.03);
}

.product-details {
    flex: 1;
    /* No max-width to allow content to flow naturally */
}

.section-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    box-shadow: 0 0 8px rgba(193, 219, 0, 0.5);
}

.product-details p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.features-list {
    list-style-type: none;
    margin: 25px 0;
}

.feature-item {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-item:before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background-color: var(--accent-color);
    margin-right: 15px;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    box-shadow: 0 0 8px rgba(193, 219, 0, 0.5);
}

/* Features Section with enhanced boxes */
.key-features {
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

/* Logo-inspired decorative elements */
.key-features::before {
    content: '';
    position: absolute;
    left: -100px;
    top: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(193, 219, 0, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.key-features::after {
    content: '';
    position: absolute;
    right: -100px;
    bottom: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(51, 51, 51, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.key-features-title {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.feature-box {
    background-color: var(--white);
    padding: 40px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid var(--accent-color);
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--accent-color);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background-color: rgba(193, 219, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.feature-box:hover .feature-icon {
    background-color: rgba(193, 219, 0, 0.3);
    transform: scale(1.1);
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px dashed var(--accent-color);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
    opacity: 0.5;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.feature-icon img {
    width: 35px;
    height: 35px;
}

.feature-box h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 15px;
}

.feature-box h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: var(--accent-color);
}

/* Applications Section with enhanced cards */
.applications {
    padding: 20px 0;
    position: relative;
}

.applications-title {
    text-align: center;
    margin-bottom: 20px;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.application-card {
    position: relative;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    border: 1px solid var(--primary-color);
}

.application-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 60%);
    z-index: 1;
}

.application-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.9);
    transition: all 0.5s ease;
}

.application-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.application-card:hover img {
    filter: brightness(0.7);
    transform: scale(1.1);
}

.application-title {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 15px 0;
    text-align: center;
    z-index: 2;
    transition: all 0.3s ease;
    border-top: 2px solid var(--accent-color);
}

.application-card:hover .application-title {
    background-color: rgba(193, 219, 0, 0.8);
    color: var(--primary-color);
    font-weight: bold;
}

/* Specifications Section with enhanced table */
.specifications {
    padding: 20px 0;
    background-color: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.specifications::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 300px;
    height: 300px;
    background-image: 
        linear-gradient(45deg, transparent 25%, rgba(193, 219, 0, 0.05) 25%), 
        linear-gradient(-45deg, transparent 25%, rgba(193, 219, 0, 0.05) 25%), 
        linear-gradient(45deg, rgba(193, 219, 0, 0.05) 75%, transparent 75%), 
        linear-gradient(-45deg, rgba(193, 219, 0, 0.05) 75%, transparent 75%);
    background-size: 20px 20px;
    opacity: 0.3;
    z-index: 0;
}

.specifications-title {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.specs-table th, .specs-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.specs-table th {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.specs-table th:last-child {
    border-right: none;
}

.specs-table tbody tr {
    transition: all 0.3s ease;
}

.specs-table tbody tr:nth-child(even) {
    background-color: rgba(193, 219, 0, 0.1);
}

.specs-table tbody tr:hover {
    background-color: rgba(193, 219, 0, 0.2);
}

/* CTA Section with gradient and geometric design */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #222222 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Logo-inspired decorative elements */
.cta-section::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -50px;
    transform: translateX(-50%) rotate(45deg);
    width: 100px;
    height: 100px;
    background-color: rgba(193, 219, 0, 0.1);
    border-radius: 8px;
}

.cta-section::after {
    content: '';
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(193, 219, 0, 0.1);
    border-radius: 50%;
}

.cta-section h2 {
    margin-bottom: 25px;
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.cta-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.cta-section p {
    margin-bottom: 35px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--white);
    padding: 14px 35px;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid var(--white);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.cta-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.5s ease;
}

.cta-secondary:hover::before {
    left: 100%;
}

.cta-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design with enhancements */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .hero::before {
        width: 150px;
        height: 150px;
    }
    
    .product-image {
        position: relative; /* Disable sticky positioning on smaller screens */
        top: 0;
    }
}

@media (max-width: 768px) {
    .product-flex {
        flex-direction: column;
    }
    
    .product-image {
        flex: 0 0 auto;
        width: 100%;
        max-height: 400px;
        margin-bottom: 30px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .applications-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .application-card {
        height: 200px;
    }
    
    .hero::before,
    .cta-section::before,
    .cta-section::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .cta-button, .cta-secondary {
        width: 100%;
        text-align: center;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .product-info::before,
    .specifications::before,
    .key-features::before,
    .key-features::after {
        display: none;
    }
}