body {
    font-family: 'Quicksand', sans-serif;
    color: #2c2c2c;
    background-color: #fefefe;
}

.about-section {
    margin-top: 20px;
    padding: 80px 0;
    background: linear-gradient(135deg, #fff9fa 0%, #fff 100%);
}

.about-section .container {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04),
                0 2px 10px rgba(255,192,203,0.05);
    padding: 60px;
    border: 1px solid rgba(255, 192, 203, 0.15);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-section .container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.08),
                0 3px 15px rgba(255,192,203,0.08);
}

.about-image {
    max-width: 100%;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    filter: brightness(1.02);
}

.about-image:hover {
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
    filter: brightness(1.05);
}

.about-text {
    padding: 40px;
    line-height: 2;
}

h2 {
    font-size: 44px;
    color: #1a1a1a;
    margin-bottom: 35px;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 70px;
    height: 3px;
    background: linear-gradient(to right, #FFC0CB 20%, #ffb6c1 80%);
    border-radius: 3px;
    opacity: 0.8;
}

p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.9;
    margin-bottom: 28px;
    letter-spacing: 0.3px;
    font-weight: 400;
}

#about-description {
    text-align: left;
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .about-section {
        margin-top: 40px;
        padding: 30px 0;
    }
    
    .about-section .container {
        padding: 25px 20px;
        margin: 0 15px;
        box-shadow: 0 8px 30px rgba(0,0,0,0.03),
                    0 2px 8px rgba(255,192,203,0.04);
    }
    
    .about-image {
        max-height: 350px;
        width: 100%;
        object-fit: cover;
        object-position: center;
        margin-bottom: 20px;
    }
    
    .about-text {
        padding: 20px 10px;
    }
    
    h2 {
        font-size: 32px;
        margin-bottom: 25px;
        text-align: center;
    }

    h2:after {
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
    }
    
    p {
        font-size: 16px;
        line-height: 1.7;
    }
}

/* Add a new breakpoint for tablets */
@media (min-width: 768px) and (max-width: 1023px) {
    .about-section {
        margin-top: 50px;
        padding: 50px 0;
    }

    .about-section .container {
        padding: 40px 30px;
    }

    h2 {
        font-size: 38px;
    }

    .about-text {
        padding: 30px 20px;
    }
}

/* Add better touch interactions for mobile */
@media (hover: none) {
    .about-section .container:hover {
        transform: none;
        box-shadow: 0 10px 40px rgba(0,0,0,0.04),
                    0 2px 10px rgba(255,192,203,0.05);
    }

    .about-image:hover {
        box-shadow: 0 8px 25px rgba(0,0,0,0.06);
        filter: brightness(1.02);
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection styling */
::selection {
    background: rgba(255, 192, 203, 0.25);
    color: #1a1a1a;
}