/* Care & Cleaning Page Styles */

.care-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10%;
    margin-top: 3rem;
}

.care-hero-image {
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 100%;
    z-index: 1;
    border-radius: 15px;
    overflow: hidden;
}

.removal-content {
    width: 75%;
    margin: auto;
}

.removal-content h3 {
    font-size: 1.5rem;
    font-weight: normal;
}

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

.care-hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.care-hero-content {
    text-align: center;
    color: #333;
    max-width: 800px;
    padding: 0 20px;
}

.content-section-care {
   padding: 80px 0 0 0 !important;
}

.care-hero-title {
    font-size: 2.5rem;
    font-weight: normal;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 25px 50px;
    border-radius: 15px;
    display: inline-block;
    margin: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

/* Care Tips Section */
.care-tips-section {
    padding: 80px 0;
    background: white;
}

.care-tips-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px 80px;
    margin-top: 2rem;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}
.care-content {
    width: 86%;
    margin: auto;
    font-size: 1.2rem;
}

.care-tip-item {
    display: block;
    background: none;
    border-radius: 0;
    box-shadow: none;
    transition: none;
    text-align: left;
}

.care-tip-item:hover {
    transform: none;
    box-shadow: none;
}

.care-tip-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.care-tip-icon {
    width: 50px;
    height: 50px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
    background: none;
}

.care-tip-header h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin: 0;
    font-weight: 600;
    line-height: 1.3;
}

.care-tip-item p {
    color: #5a6c7d;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .care-tips-grid {
        gap: 40px 60px;
    }
    
    .care-hero-title {
        font-size: 3rem;
        padding: 20px 40px;
    }
}

.care-tip-header h3 {
    color: #333;
    font-size: 1.5rem;
    margin: 0;
    font-weight: 600;
}

.care-tip-item p {
    color: #666;
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .care-hero {
        padding: 0 5%;
    }
    
    .care-hero-image {
        left: 5%;
        width: 90%;
    }
    
    .care-hero-title {
        font-size: 3rem;
        padding: 20px 40px;
    }
    
    .care-tips-grid {
        gap: 40px 30px;
        max-width: 90%;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .care-hero {
        height: 60vh;
        min-height: 400px;
        padding: 0 2.5%;
    }
    
    .care-hero-image {
        left: 2.5%;
        width: 95%;
        border-radius: 10px;
    }
    
    .care-hero-title {
        font-size: 2.5rem;
        padding: 20px 30px;
    }
    
    .care-tips-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 95%;
    }
    
    .care-tip-item {
        padding: 30px 25px;
    }
    
    .care-tip-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .care-tip-header h3 {
        font-size: 1.3rem;
    }
    
    .care-tip-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .care-tips-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .care-hero-title {
        font-size: 2rem;
        padding: 15px 25px;
    }
    
    .care-tip-item {
        padding: 25px 20px;
    }
    
    .care-tip-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}