/* Global styles */
:root {
    --primary: #2c3e50;
    --secondary: #3498db;
    --accent: #e74c3c;
    --text: #2d3436;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #2c3e50, #3498db);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.8;
    color: var(--text);
    background-color: var(--white);
}

/* Header and Featured Image */
.product-header-images {
    position: relative;
    background: var(--gradient);
    height: 80px;
    overflow: hidden;
}

.product-header-images::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom right, transparent 49%, var(--white) 51%);
}

.about-section {
    padding: 0;
    background-color: var(--white);
}

.about-main-img-gelatin {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    background: var(--light-bg);
    padding: 60px 20px;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.about-main-img-gelatin h1 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 40px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.gelatin_images {
    max-width: 90%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 0;
    transition: var(--transition);
}

.gelatin_images:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Content Area */
.about-section-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-section-content h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-family: 'Georgia', serif;
    line-height: 1.3;
    font-weight: 800;
    position: relative;
    padding-bottom: 15px;
}

.about-section-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
}

.about-section-content h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin: 50px 0 25px;
    font-weight: 700;
    font-family: 'Georgia', serif;
    position: relative;
    padding-left: 20px;
}

.about-section-content h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--secondary);
    border-radius: 2px;
}

.about-section-content h4 {
    color: var(--primary);
    font-size: 1.4rem;
    margin: 30px 0 20px;
    font-weight: 600;
    font-family: 'Georgia', serif;
}

.about-section-content p {
    color: var(--text);
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 25px;
}

/* Gel Types Section */
.gel-types {
    margin: 40px 0;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.gel-types::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
}

.gel-type {
    margin-bottom: 30px;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.gel-type:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gel-type:last-child {
    margin-bottom: 0;
}

.gel-type h4 {
    color: var(--primary);
    margin: 0 0 20px;
    display: flex;
    align-items: center;
}

.gel-type h4::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    margin-right: 15px;
}

.gel-type p {
    margin-bottom: 0;
    padding-left: 23px;
}

/* Bottom Images Section */
.comparison-images {
    margin: 80px -20px 0;
    background: var(--light-bg);
    padding: 50px 20px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.comparison-images::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
}

.comparison-images .col-md-6 {
    padding: 15px;
}

.comparison-images img {
    border-radius: 15px;
    box-shadow: var(--shadow);
    width: 100%;
    transition: var(--transition);
}

.comparison-images img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-main-img-gelatin {
        padding: 40px 20px;
        clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    }

    .about-main-img-gelatin h1 {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }
    
    .about-section-content h2 {
        font-size: 2rem;
    }
    
    .about-section-content h3 {
        font-size: 1.5rem;
        margin: 40px 0 20px;
    }
    
    .about-section-content h4 {
        font-size: 1.2rem;
    }
    
    .about-section-content p {
        font-size: 1.1rem;
    }
    
    .gel-type {
        padding: 20px;
    }

    .comparison-images {
        margin-top: 60px;
        padding: 30px 15px;
    }
} 