/* Fișier: garantie.css */

.garantie-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    font-family: 'Open Sans', Arial, sans-serif;
    color: #333333;
    line-height: 1.8;
}

.garantie-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f2f2f2;
}

.garantie-header h1 {
    font-size: 32px;
    color: #111111;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.garantie-header .subtitle {
    font-size: 16px;
    color: #777777;
    font-style: italic;
}

.garantie-section {
    margin-bottom: 35px;
    text-align: justify;
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid transparent;
}

.garantie-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border-left-color: #ff6600; /* Portocaliu corporativ */
}

.garantie-section h2 {
    font-size: 20px;
    color: #ff6600; /* Accent Portocaliu */
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 600;
}

.garantie-section p {
    font-size: 14px;
    margin-bottom: 0;
    color: #444444;
}

/* Stil pentru listele elegante */
.garantie-list {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
    margin-bottom: 0;
}

.garantie-list li {
    font-size: 14px;
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #444444;
}

.garantie-list li::before {
    content: "•";
    color: #ff6600; /* Punct portocaliu */
    font-size: 22px;
    position: absolute;
    left: 5px;
    top: -4px;
}

/* Blocuri evidențiate special */
.text-highlight {
    background-color: #fcfcfc;
    border-left: 4px solid #ff6600;
}

.alert-box {
    background-color: #fff9f5; /* Fundal foarte fin portocaliu/crem */
    border: 1px dashed #ff6600;
    border-left: 4px solid #ff6600;
}

.alert-box h2 {
    color: #e65c00;
}

/* Adaptabilitate pentru dispozitive mobile */
@media (max-width: 768px) {
    .garantie-container {
        padding: 15px;
        margin: 20px auto;
    }
    
    .garantie-header h1 {
        font-size: 24px;
    }
    
    .garantie-section {
        padding: 20px;
    }
}