* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cormorant Garamond', serif;
    background-color: #faf7f3;
}

.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.8rem;
    color: #6d3d47;
    margin: 50px 0 60px 0;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.3;
}

.treatments-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 20px 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 30px;
}

.treatment-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(109, 61, 71, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.treatment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(109, 61, 71, 0.15);
}

.card-header {
    background: linear-gradient(135deg, #f8f3ed 0%, #f5ede6 100%);
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 90px;
    border-bottom: 1px solid rgba(109, 61, 71, 0.08);
}

.card-title {
    font-size: 1.15rem;
    color: #6d3d47;
    font-weight: 500;
    line-height: 1.35;
    flex: 1;
}

.arrow-btn {
    width: 40px;
    height: 40px;
    background: #6d3d47;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-left: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.arrow-btn:hover {
    background: #8d5d67;
    transform: scale(1.12) rotate(45deg);
}

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    flex: 1;
}

.treatment-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.treatment-card:hover .treatment-img {
    transform: scale(1.08);
}

@media (max-width: 1200px) {
    .treatments-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px 25px;
    }
    
    .main-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .treatments-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 20px;
    }

    .hero-section {
        height: 300px;
    }

    .main-title {
        font-size: 2rem;
        margin: 35px 0 45px 0;
    }

    .card-header {
        padding: 18px 20px;
        min-height: 80px;
    }

    .card-title {
        font-size: 1.05rem;
    }
    
    .arrow-btn {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }

    .card-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .treatments-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-section {
        height: 250px;
    }
    
    .main-title {
        font-size: 1.75rem;
        margin: 30px 0 40px 0;
    }

    .card-header {
        padding: 16px 18px;
        min-height: 75px;
    }

    .card-title {
        font-size: 1rem;
    }

    .arrow-btn {
        width: 34px;
        height: 34px;
    }
}