/* GLP-1 Page Specific Styles */
.glp1-hero {
    background: linear-gradient(135deg, #006bc7, #004080);
    padding: 6rem 2rem;
}

.glp1-hero h1 {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
}

.glp1-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    display: flex;
    gap: 2rem;
}

.breadcrumb {
    background-color: #f5f5f5;
    padding: 10px 0;
    margin-bottom: 30px;
}

.breadcrumb .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb span {
    color: var(--gray);
}

/* Sidebar Styles */
.sidebar {
    flex: 0 0 250px;
    background-color: #f5f5f5;
    padding: 2rem;
    border-radius: 8px;
    position: sticky;
    top: 2rem;
    align-self: flex-start;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
}

.sidebar h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar ul li {
    margin-bottom: 1rem;
}

.sidebar ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.sidebar ul li a:hover {
    color: var(--primary-color);
}

/* Content Styles */
.content {
    flex: 1;
}

/* GLP-1 Introduction Section */
.glp1-intro {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.glp1-intro h2 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.glp1-intro-content p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* GLP-1 Section Styles */
.glp1-section {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.glp1-section h2 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.glp1-content {
    color: var(--text-color);
}

/* Structure & Properties Styles */
.glp1-structure {
    margin-bottom: 2.5rem;
}

.glp1-structure h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.structure-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.structure-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #e6f0ff;
    border-radius: 8px;
    padding: 15px;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.structure-image:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.molecule-img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}

.structure-details {
    flex: 1;
    min-width: 300px;
}

.structure-details p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

/* Description Styles */
.glp1-description {
    margin-bottom: 2.5rem;
}

.glp1-description h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.glp1-description p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Applications Styles */
.glp1-applications h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.glp1-applications ul {
    padding-left: 1.5rem;
}

.glp1-applications li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

/* Custom GLP-1 Section Styles */
.custom-services-list {
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

.custom-services-list li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.cta-container {
    text-align: center;
    margin: 2.5rem 0 1rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--secondary-color);
}

/* Responsive Design for GLP-1 Page */
@media (max-width: 992px) {
    .glp1-main {
        flex-direction: column;
    }
    
    .sidebar {
        flex: 0 0 100%;
        position: static;
        max-height: none;
    }
    
    .structure-content {
        flex-direction: column;
    }
    
    .structure-image, .structure-details {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .glp1-hero {
        padding: 4rem 1rem;
    }
    
    .glp1-hero h1 {
        font-size: 2.2rem;
    }
    
    .glp1-section, .glp1-intro {
        padding: 1.5rem;
    }
    
    .glp1-intro h2, .glp1-section h2 {
        font-size: 1.8rem;
    }
    
    .glp1-structure h3, .glp1-description h3, .glp1-applications h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .cta-button {
        width: 100%;
        padding: 0.8rem 1rem;
    }
} 