.printing-styles-container {
    font-family: 'Arial', sans-serif;
}

.container {
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    padding: 80px 0 60px;
    background-color: #f8f9fa;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.hero-left {
    /* Content goes here */
}

.hero-right {
    /* Empty space */
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    text-align: left;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    text-align: left;
}

/* Section Styles */
.impressions-section,
.embroidery-section,
.flocking-section,
.crests-section {
    padding: 60px 0;
    background-color: #fff;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
}

/* Printing techniques grid */
.printing-techniques-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.printing-techniques-grid.single-column {
    display: grid;
    grid-template-columns: minmax(280px, 400px);
    gap: 40px;
    margin-top: 40px;
}

.printing-technique {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column; /* Add this */
}

.printing-technique:hover {
    transform: translateY(-5px);
}

.technique-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.technique-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.technique-content {
    padding: 20px;
    display: flex; /* Add this */
    flex-direction: column; /* Add this */
    flex-grow: 1; /* Add this */
}

.technique-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.technique-code {
    font-size: 0.9rem;
    color: #888;
    font-weight: bold;
    margin-bottom: 10px;
}

.technique-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}

.technique-specs {
    margin-bottom: 20px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.spec-label {
    color: #666;
    font-weight: 500;
}

.spec-value {
    color: #333;
    font-weight: bold;
}

/* Progress bars */

.progress-label {
    min-width: 140px;
    color: #666;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Features Section */
.features-section {
    background: linear-gradient(135deg, #003A0C, #003A0C);
    color: white;
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    text-align: center;
}

.feature-item {
    padding: 20px;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: white;
}

.feature-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-title {
        text-align: center;
    }
    
    .hero-description {
        text-align: center;
    }
    
    .printing-techniques-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .printing-techniques-grid.single-column {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .progress-label {
        min-width: 120px;
        font-size: 0.75rem;
    }
    
    .technique-content {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 60px 0 40px;
    }
    
    .impressions-section,
    .embroidery-section,
    .flocking-section,
    .crests-section {
        padding: 40px 0;
    }
    
    .progress-bar {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 15px;
    }
    
    .progress-track {
        width: 100%;
        margin: 5px 0;
    }
    
    .progress-value {
        align-self: flex-end;
        margin-top: 5px;
    }
}

/* Animation effects */
.printing-technique {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.printing-technique:nth-child(1) { animation-delay: 0.1s; }
.printing-technique:nth-child(2) { animation-delay: 0.2s; }
.printing-technique:nth-child(3) { animation-delay: 0.3s; }
.printing-technique:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effects for progress bars */
.printing-technique:hover .progress-fill {
    background: linear-gradient(90deg, #20c997, #17a2b8);
}

.printing-technique:hover .progress-value {
    color: #24511D;
}