* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cormorant Garamond', serif;
    background-color: #f9f5f0;
}

.hero-section {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.main-title {
    text-align: center;
    font-size: 2.5rem;
    color: #6d3d47;
    margin: 40px 0 50px 0;
    font-weight: 400;
    letter-spacing: 1px;
}

.treatments-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px 60px 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 50px;
}

.treatment-card {
    background: #faf7f3;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.treatment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.card-header {
    background: #f5ede6;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.card-title {
    font-size: 1.1rem;
    color: #6d3d47;
    font-weight: 400;
    line-height: 1.3;
    flex: 1;
}

.arrow-btn {
    width: 35px;
    height: 35px;
    background: #6d3d47;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-left: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.arrow-btn:hover {
    background: #8d5d67;
    transform: scale(1.1);
}

.card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.treatment-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.treatment-card:hover .treatment-img {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .treatments-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .treatments-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 15px;
    }

    .main-title {
        font-size: 2rem;
        margin: 30px 0 40px 0;
    }

    .card-title {
        font-size: 1rem;
    }
    
    .arrow-btn {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .treatments-container {
        grid-template-columns: 1fr;
    }

    .hero-section {
        height: 150px;
    }
    
    .main-title {
        font-size: 1.8rem;
    }
}