/* Hero Section */
.hero-section {
    background-image: url('/images/header.jpg');
    background-size: cover;
    background-position: center;
    height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1;
}

.hero-subtitle {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgb(228, 10, 129);
    margin-top: 0;
}

/* Product Details Section */
.product-details {
    padding: 80px 0;
    background-color: #fff;
    color: #000;
}

.product-details h2 {
    color: rgb(228, 10, 129);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.product-details h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #000;
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.product-layers-img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

/* Features List */
.features-list {
    padding-left: 20px;
}

.features-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    list-style-type: none;
}

.features-list li::before {
    content: '•';
    color: rgb(228, 10, 129);
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
}

/* Usage List */
.usage-list {
    padding-left: 20px;
}

.usage-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    list-style-type: none;
}

.usage-list li::before {
    content: '▶';
    color: rgb(228, 10, 129);
    font-size: 12px;
    position: absolute;
    left: 0;
    top: 2px;
}

/* Industries List */
.industries-list {
    padding-left: 20px;
}

.industries-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    list-style-type: none;
}

.industries-list li::before {
    content: '⚙';
    color: rgb(228, 10, 129);
    font-size: 16px;
    position: absolute;
    left: 0;
    top: 0;
}

/* Layers List */
.layers-list {
    padding-left: 20px;
}

.layers-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
    list-style-type: none;
    font-size: 14px;
}

.layers-list li::before {
    content: '◉';
    color: rgb(228, 10, 129);
    font-size: 12px;
    position: absolute;
    left: 0;
    top: 2px;
}

/* Installation Section */
.installation-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    color: #000;
}

.installation-section h3 {
    color: rgb(228, 10, 129);
    margin-bottom: 20px;
}

.installation-steps {
    counter-reset: step-counter;
    list-style-type: none;
    padding-left: 0;
}

.installation-steps li {
    counter-increment: step-counter;
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
}

.installation-steps li::before {
    content: counter(step-counter);
    color: #fff;
    background-color: rgb(228, 10, 129);
    font-weight: bold;
    font-size: 14px;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
}

/* Product Specifications */
.spec-item {
    background-color: #fff;
    padding: 20px;
    border-left: 3px solid rgb(228, 10, 129);
    margin-bottom: 20px;
}

.spec-title {
    color: rgb(228, 10, 129);
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.spec-value {
    color: #333;
    margin: 0;
    font-size: 0.95rem;
}

/* Specifications Section */
.specs-section {
    padding: 60px 0;
    background-color: #000;
}

.specs-table {
    width: 100%;
    margin-bottom: 30px;
}

.specs-table th {
    color: rgb(228, 10, 129);
    font-weight: 600;
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #333;
}

.specs-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #333;
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background-color: #111;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Other Products */
.other-products {
    padding: 60px 0;
    background-color: #fff;
    color: #000;
}

.other-products h2 {
    color: rgb(228, 10, 129);
    margin-bottom: 40px;
    text-align: center;
}

.product-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.product-link {
    color: #000;
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
}

.product-link:hover {
    background-color: rgb(228, 10, 129);
    color: #fff;
    border-color: rgb(228, 10, 129);
    text-decoration: none;
}

/* Test Results Section */
.test-results {
    padding: 60px 0;
    background-color: #f8f9fa;
    color: #000;
}

.test-results h2 {
    color: rgb(228, 10, 129);
    margin-bottom: 30px;
    text-align: center;
}

.test-details {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.test-logo {
    max-width: 200px;
    height: auto;
}

/* Product Info Section Styling */
.product-info {
    background-color: #fff;
}

.product-title {
    color: rgb(228, 10, 129);
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.features-title,
.usage-title,
.industries-title,
.layers-title {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 15px;
    margin-top: 30px;
    font-weight: 600;
}

.product-image-container {
    text-align: center;
    margin-bottom: 30px;
}

/* Installation Info Styling */
.installation-info {
    background-color: #f8f9fa;
}

.installation-title,
.steps-title {
    color: rgb(228, 10, 129);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.installation-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }

    .product-title {
        font-size: 1.8rem;
    }

    .product-links {
        flex-direction: column;
        align-items: center;
    }

    .product-link {
        width: 80%;
        text-align: center;
    }
}
