/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
}

a {
    color: #e56d26;
    font-style: normal;
    text-decoration: underline;
    font-weight: bold;
}

.container {
    margin: 0 auto;
    background: #fff;
    padding: 0;
}

/* Header Banner */
.header-banner {
    display: none;
}

/* Main Content Area */
.content-wrapper {
    padding: 40px 30px;
}

/* Product Overview Section */
.product-overview {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.product-image {
    position: relative;
}

.product-image img {
    width: 100%;
    border-radius: 8px;
}

.product-details h2 {
    font-size: 1.8em;
    color: #2f302f;
    margin-bottom: 20px;
    border-bottom: 3px solid #e56d26;
    padding-bottom: 10px;
}

.product-description {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.product-description p {
    margin-bottom: 15px;
}

/* Benefits Section */
.benefits {
    background: linear-gradient(135deg, #fff5ee 0%, #ffe8d6 100%);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 2px solid #e56d26;
}

.benefits h3 {
    font-size: 1.5em;
    color: #2f302f;
    margin-bottom: 20px;
    text-align: center;
}

.benefits-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.benefits-list li {
    background: white;
    padding: 15px 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    font-size: 1em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.benefits-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.benefits-list li i {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: #e56d26;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    margin-right: 15px;
    font-size: 0.9em;
    flex-shrink: 0;
}

/* Section Headers */
.section {
    margin-bottom: 60px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 1.8em;
    color: #2f302f;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: #e56d26;
}

.section-intro {
    font-size: 1.1em;
    color: #666;
    max-width: 800px;
    margin: 20px auto 0;
    text-align: center;
}

/* Instructions Steps */
.instructions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.instructions-tip {
    margin-top: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-left: 4px solid #e56d26;
    border-radius: 4px;
    line-height: 1.7;
}

.instructions-tip p {
    margin: 0;
    color: #555;
}

.instructions-tip a {
    color: #e56d26;
    text-decoration: none;
    font-weight: 600;
}

.instructions-tip a:hover {
    text-decoration: underline;
}

.instruction-step {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.instruction-step img {
    width: 100%;
    display: block;
}

.instruction-step:not(:has(img)) {
    background: #fff;
}

.instruction-step:not(:has(img)) .instruction-content {
    padding: 30px 25px;
}

.instruction-content {
    padding: 25px;
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #e56d26;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: 15px;
}

.instruction-content h3 {
    font-size: 1.4em;
    color: #2f302f;
    margin-bottom: 15px;
}

.instruction-content p {
    color: #666;
    line-height: 1.7;
}

/* Important Notes */
.important-notes {
    background: #fff9e6;
    border-left: 5px solid #ffc107;
    padding: 30px;
    border-radius: 8px;
}

/* Application Areas */
.application-areas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.application-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.application-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.application-icon {
    width: 60px;
    height: 60px;
    background: #e56d26;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.application-icon i {
    font-size: 1.8em;
    color: white;
}

.application-item h3 {
    font-size: 1.3em;
    color: #2f302f;
    margin-bottom: 15px;
}

.application-item p {
    color: #666;
    line-height: 1.7;
}

/* Processing Times Table */
.processing-times {
    margin-top: 30px;
}

.time-table {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.time-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1.2fr 1.2fr;
    border-bottom: 1px solid #f0f0f0;
}

.time-row:last-child {
    border-bottom: none;
}

.time-header {
    background: #e56d26;
    color: white;
    font-weight: bold;
}

.time-label,
.time-value {
    padding: 15px 20px;
    text-align: center;
}

.time-label {
    font-weight: 600;
    color: #2f302f;
    text-align: left;
}

.time-header .time-label,
.time-header .time-value {
    color: white;
}

.time-row:nth-child(even):not(.time-header) {
    background: #f9f9f9;
}

/* Important Notes */

.important-notes h3 {
    font-size: 1.8em;
    color: #2f302f;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.important-notes h3:before {
    content: "⚠";
    font-size: 1.3em;
    margin-right: 15px;
    color: #ffc107;
}

.important-notes ul {
    list-style: none;
    padding-left: 0;
}

.important-notes li {
    padding: 12px 0 12px 35px;
    border-bottom: 1px solid #ffe6a0;
    position: relative;
    color: #555;
    line-height: 1.7;
}

.important-notes li:last-child {
    border-bottom: none;
}

.important-notes li:before {
    content: "•";
    position: absolute;
    left: 15px;
    color: #ffc107;
    font-size: 1.5em;
    line-height: 1;
}

/* Footer CTA */
.footer-cta {
    background: #e56d26;
    padding: 40px;
    text-align: center;
    color: white;
    border-radius: 8px;
    margin-top: 60px;
}

.footer-cta h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
}

.footer-cta p {
    font-size: 1.1em;
    opacity: 0.9;
}

.footer-cta a {
    color: white;
    text-decoration: underline;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-banner::before {
        width: 200px;
        height: 60px;
    }
    
    .product-overview {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .content-wrapper {
        padding: 30px 20px;
    }
    
    .section-header h2 {
        font-size: 1.8em;
    }
    
    .instructions-grid {
        grid-template-columns: 1fr;
    }
    
    .instruction-step img {
        width: 100%;
        display: block;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .application-areas {
        grid-template-columns: 1fr;
    }
    
    .time-row {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .time-label,
    .time-value {
        text-align: left;
        border-bottom: 1px solid #e0e0e0;
        padding: 10px 15px;
    }
    
    .time-value:before {
        content: attr(data-label);
        font-weight: 600;
        display: inline-block;
        margin-right: 10px;
    }
}