/* =====================================================
   Födémzsalu Page - Additional CSS
   Extends main.css with page-specific styles
   ===================================================== */

/* ========== Hero Section ========== */
.hero-fodemzsalu {
    background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.5)), 
                url('/pics/fodemzsalu-hero.jpg') center/cover;
    padding: 120px 0;
    text-align: center;
    position: relative;
}

.hero-white-box {
    background: rgba(255, 255, 255, 0.95);
    display: inline-block;
    padding: 40px 60px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--legnotre-yellow);
}

.hero-white-box h1 {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-size: 2.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.hero-white-box h2 {
    color: var(--text-primary);
    opacity: 0.85;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.4;
}

/* ========== Trust Bar Enhanced ========== */
.trust-bar-featured {
    background: var(--legnotre-red);
    color: white;
    padding: 25px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.trust-bar-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255,255,255,0.1) 50%, 
        transparent 100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.trust-bar-featured .trust-items {
    position: relative;
    z-index: 1;
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========== CTA Section Enhanced ========== */
.cta-section-dual {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    padding: 50px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.cta-buttons-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
}

.cta-button-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    border-radius: 35px;
    font-weight: 700;
    font-size: 1.15rem;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button-phone {
    background: var(--legnotre-red);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-button-phone::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button-phone:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button-phone:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(237, 29, 35, 0.35);
    color: white;
}

.cta-button-email {
    background: var(--legnotre-yellow);
    color: var(--text-primary);
}

.cta-button-email:hover {
    background: #e6a800;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 189, 0, 0.4);
    color: var(--text-primary);
}

/* ========== Födém Types Section ========== */
.fodem-types-section {
    padding: 80px 0;
    background: white;
}

.fodem-types-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.section-desc {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-primary);
    opacity: 0.8;
    margin-bottom: 60px;
}

.fodem-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

@media (min-width: 1400px) {
    .fodem-types-grid {
        gap: 50px;
        padding: 0 60px;
    }
}

@media (min-width: 1920px) {
    .fodem-types-grid {
        gap: 60px;
        padding: 0 120px;
    }
}

.fodem-type-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.fodem-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--legnotre-yellow);
}

.fodem-type-card.featured {
    border-color: var(--legnotre-red);
    border-width: 3px;
    background: linear-gradient(to bottom, #fffef5, white);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--legnotre-red);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(237, 29, 35, 0.3);
}

.type-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .type-image {
        height: 300px;
    }
}

@media (min-width: 1400px) {
    .type-image {
        height: 350px;
    }
}

.type-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.fodem-type-card:hover .type-image img {
    transform: scale(1.05);
}

.type-info {
    padding: 30px;
}

.type-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.type-specs {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.spec-item {
    font-weight: 700;
    color: var(--legnotre-red);
}

.spec-separator {
    color: #ccc;
}

.type-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    opacity: 0.85;
    margin-bottom: 25px;
}

.btn-spec {
    display: inline-block;
    padding: 12px 30px;
    background: var(--legnotre-yellow);
    color: var(--text-primary);
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-spec:hover {
    background: var(--legnotre-red);
    color: white;
    transform: translateY(-2px);
}

.btn-spec-featured {
    background: var(--legnotre-red);
    color: white;
}

.btn-spec-featured:hover {
    background: #c0392b;
}

/* ========== Technical Specs Section ========== */
.technical-specs-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.technical-specs-section h2 {
    text-align: center;
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 50px;
}

.specs-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

@media (min-width: 1400px) {
    .specs-wrapper {
        gap: 80px;
        padding: 0 80px;
    }
}

.specs-table {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.specs-table h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--legnotre-yellow);
}

.specs-table table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table td {
    padding: 12px 0;
    font-size: 1.05rem;
    border-bottom: 1px solid #e0e0e0;
}

.specs-table td:first-child {
    color: var(--text-primary);
    opacity: 0.8;
}

.specs-table td:last-child {
    text-align: right;
    color: var(--text-primary);
}

.specs-table td strong {
    font-weight: 600;
    color: var(--legnotre-red);
}

.specs-benefits {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.specs-benefits h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--legnotre-yellow);
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 1.05rem;
    line-height: 1.5;
}

.benefits-list svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* ========== Assembly Process Section ========== */
.assembly-process-section {
    padding: 80px 0;
    background: white;
}

.assembly-process-section h2 {
    text-align: center;
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-primary);
    opacity: 0.8;
    margin-bottom: 60px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

@media (min-width: 1400px) {
    .process-steps {
        padding: 0 80px;
    }
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 30px 20px;
    background: #f9f9f9;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    background: var(--legnotre-yellow);
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--legnotre-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.step-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-primary);
    opacity: 0.85;
}

.process-arrow {
    font-size: 2rem;
    color: var(--legnotre-red);
    margin: 0 20px;
}

.assembly-tips {
    background: #fffef5;
    border: 2px solid var(--legnotre-yellow);
    border-radius: 15px;
    padding: 40px;
}

.assembly-tips h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 25px;
}

.assembly-tips ul {
    list-style: none;
    padding: 0;
}

.assembly-tips ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.assembly-tips ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--legnotre-red);
    font-weight: 700;
    font-size: 1.2rem;
}

/* ========== Applications Section ========== */
.applications-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.applications-section h2 {
    text-align: center;
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

@media (min-width: 1400px) {
    .applications-grid {
        gap: 50px;
        padding: 0 60px;
    }
}

.application-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.application-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--legnotre-yellow);
}

.app-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(237, 29, 35, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-icon img {
    width: 50px;
    height: 50px;
}

.application-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.application-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    opacity: 0.85;
}

/* ========== Gallery Section ========== */
.gallery-section {
    padding: 80px 0;
    background: white;
}

.gallery-section h2 {
    text-align: center;
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (min-width: 1400px) {
    .gallery-grid {
        gap: 25px;
        padding: 0 60px;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px 10px 10px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay span {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
}

/* ========== Safety Section ========== */
.safety-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

.safety-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (min-width: 1400px) {
    .safety-content {
        gap: 80px;
        padding: 0 60px;
    }
}

.safety-text h2 {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.safety-text > p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-primary);
    opacity: 0.85;
    margin-bottom: 40px;
}

.safety-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.safety-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.safety-item svg {
    flex-shrink: 0;
    margin-top: 5px;
}

.safety-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.safety-item p {
    font-size: 0.95rem;
    color: var(--text-primary);
    opacity: 0.8;
    margin: 0;
}

.safety-download {
    margin-top: 30px;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 35px;
    background: var(--legnotre-red);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-download:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(237, 29, 35, 0.3);
    color: white;
}

.safety-image {
    position: relative;
}

.safety-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* ========== FAQ Section ========== */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 50px;
}

.faq-container {
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

@media (min-width: 1400px) {
    .faq-container {
        padding: 0 80px;
    }
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

@media (min-width: 1024px) {
    .faq-question {
        padding: 25px 35px;
        font-size: 1.2rem;
    }
}

.faq-question:hover {
    background: #f9f9f9;
}

.faq-question[aria-expanded="true"] {
    background: var(--legnotre-yellow);
    color: var(--text-primary);
}

.faq-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.faq-answer p {
    padding: 20px 25px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    opacity: 0.85;
    margin: 0;
    border-top: 1px solid #e0e0e0;
}

@media (min-width: 1024px) {
    .faq-answer p {
        padding: 25px 35px;
        font-size: 1.1rem;
        line-height: 1.7;
    }
}

/* Form Section Enhanced */
.contact-form-enhanced {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--legnotre-yellow);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.form-header p {
    color: var(--text-primary);
    opacity: 0.8;
}

/* ========== Responsive Styles ========== */
@media (max-width: 1024px) {
    .fodem-types-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .specs-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .process-steps {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .process-step {
        flex: 1 1 45%;
    }
    
    .process-arrow {
        display: none;
    }
    
    .applications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .safety-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-fodemzsalu {
        padding: 80px 0;
    }
    
    .hero-white-box {
        padding: 30px 25px;
        margin: 0 15px;
    }
    
    .hero-white-box h1 {
        font-size: 1.8rem;
    }
    
    .hero-white-box h2 {
        font-size: 1.05rem;
    }
    
    .trust-bar-featured .trust-items {
        flex-direction: column;
        gap: 12px;
        font-size: 0.9rem;
    }
    
    .cta-buttons-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-button-large {
        width: 90%;
        max-width: 300px;
        justify-content: center;
        padding: 18px 30px;
        font-size: 1rem;
    }
    
    .fodem-types-section h2 {
        font-size: 2rem;
    }
    
    .section-desc {
        font-size: 1.05rem;
        padding: 0 20px;
    }
    
    .fodem-types-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0;
    }
    
    .type-image {
        height: 200px;
    }
    
    .type-info {
        padding: 20px;
    }
    
    .type-info h3 {
        font-size: 1.3rem;
    }
    
    .type-specs {
        font-size: 1rem;
    }
    
    .technical-specs-section h2 {
        font-size: 1.8rem;
    }
    
    .specs-wrapper {
        gap: 30px;
        padding: 0;
    }
    
    .specs-table,
    .specs-benefits {
        padding: 25px;
    }
    
    .specs-table h3,
    .specs-benefits h3 {
        font-size: 1.3rem;
    }
    
    .assembly-process-section h2 {
        font-size: 1.8rem;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 20px;
    }
    
    .process-step {
        flex: 1 1 100%;
        padding: 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .assembly-tips {
        padding: 25px;
    }
    
    .assembly-tips h3 {
        font-size: 1.3rem;
    }
    
    .applications-section h2 {
        font-size: 1.8rem;
    }
    
    .applications-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .application-card {
        padding: 25px;
    }
    
    .app-icon {
        width: 70px;
        height: 70px;
    }
    
    .gallery-section h2 {
        font-size: 1.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0;
    }
    
    .safety-text h2 {
        font-size: 1.8rem;
    }
    
    .safety-features {
        gap: 20px;
    }
    
    .safety-item h4 {
        font-size: 1.1rem;
    }
    
    .btn-download {
        width: 100%;
        justify-content: center;
    }
    
    .faq-section h2 {
        font-size: 1.8rem;
    }
    
    .faq-container {
        padding: 0 var(--spacing-sm);
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 18px 20px;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
        padding: 18px 20px;
    }
}

@media (max-width: 480px) {
    .hero-white-box {
        padding: 25px 20px;
    }
    
    .hero-white-box h1 {
        font-size: 1.5rem;
    }
    
    .hero-white-box h2 {
        font-size: 0.95rem;
    }
    
    .cta-button-large {
        padding: 15px 25px;
        font-size: 0.9rem;
    }
    
    .fodem-types-section {
        padding: 50px 0;
    }
    
    .fodem-types-section h2 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .section-desc {
        font-size: 0.95rem;
        margin-bottom: 40px;
    }
    
    .type-info h3 {
        font-size: 1.15rem;
    }
    
    .type-specs {
        font-size: 0.9rem;
        gap: 10px;
    }
    
    .type-info p {
        font-size: 0.9rem;
    }
    
    .btn-spec {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .technical-specs-section {
        padding: 50px 0;
    }
    
    .technical-specs-section h2 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .specs-table td,
    .benefits-list li {
        font-size: 0.95rem;
    }
    
    .assembly-process-section {
        padding: 50px 0;
    }
    
    .assembly-process-section h2 {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .step-content h3 {
        font-size: 1.15rem;
    }
    
    .step-content p {
        font-size: 0.85rem;
    }
    
    .assembly-tips h3 {
        font-size: 1.15rem;
    }
    
    .assembly-tips ul li {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    
    .applications-section {
        padding: 50px 0;
    }
    
    .applications-section h2 {
        font-size: 1.5rem;
    }
    
    .application-card h3 {
        font-size: 1.15rem;
    }
    
    .application-card p {
        font-size: 0.9rem;
    }
    
    .gallery-section {
        padding: 50px 0;
    }
    
    .gallery-section h2 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .safety-section {
        padding: 50px 0;
    }
    
    .safety-text h2 {
        font-size: 1.5rem;
    }
    
    .safety-text > p {
        font-size: 1rem;
    }
    
    .safety-item h4 {
        font-size: 1rem;
    }
    
    .safety-item p {
        font-size: 0.85rem;
    }
    
    .btn-download {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-section h2 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .faq-question {
        font-size: 0.95rem;
        padding: 15px;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
        padding: 15px;
    }
    
    .contact-form-enhanced {
        padding: 25px 20px;
    }
    
    .form-header h2 {
        font-size: 1.5rem;
    }
    
    .form-header p {
        font-size: 0.9rem;
    }
}