* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Header Styles */
.pamphlet-header {
    background: linear-gradient(135deg, #1a237e 0%, #283593 50%, #e53935 100%);
    color: white;
    padding: 60px 0 40px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.pamphlet-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,128L48,144C96,160,192,192,288,186.7C384,181,480,139,576,138.7C672,139,768,181,864,197.3C960,213,1056,203,1152,186.7C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center;
    animation: wave 15s linear infinite;
}

@keyframes wave {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-5%);
    }

    100% {
        transform: translateX(0);
    }
}

.pamphlet-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    animation: fadeInDown 1s ease-out;
}

.pamphlet-header .subtitle {
    font-size: 18px;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    position: relative;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.breadcrumb {
    position: relative;
    margin-top: 10px;
    animation: fadeIn 1s ease-out 0.6s both;
}

.pamphlet-header a {
    display: inline-block;
    font-size: 14px;
    color: #fff;
    opacity: 0.85;
    text-decoration: none;
    transition: opacity 0.3s;
}

.pamphlet-header a:hover {
    opacity: 1;
}

.pamphlet-header a i {
    margin-right: 5px;
}

/* Main container */
.oncology-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 20px 30px;
    width: 100%;
}

/* Section Header Styling */
.section-header {
    margin-bottom: 40px;
    text-align: center;
}

.section-header h2 {
    font-size: 32px;
    color: #1a237e;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-header h2 i {
    color: #e53935;
}

.header-line {
    height: 3px;
    width: 100px;
    background: linear-gradient(to right, #1a237e, #e53935);
    margin: 0 auto;
    border-radius: 2px;
}

/* Overview Section - Updated for side-by-side layout */
.overview-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.overview-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.overview-right {
    flex: 1;
}

.overview-text {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 30px;
    text-align: left;
}

.compliance-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.badge {
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.badge.gmp {
    background: #1a237e;
    color: white;
}

.badge.iso {
    background: #4caf50;
    color: white;
}

.badge.potency {
    background: #e53935;
    color: white;
}

.overview-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.overview-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.overview-image:hover img {
    transform: scale(1.05);
}

.image-caption {
    background: rgba(26, 35, 126, 0.9);
    color: white;
    padding: 10px 15px;
    font-size: 14px;
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;
}

/* Manufacturing Section */
.manufacturing-section {
    padding: 20px 0;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Grid layout for 5 columns */
.blocks-grid.five-columns {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* Individual card styling */
.block-card {
    background: white;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #1a237e;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

/* Hover effect */
.block-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Icon styling */
.block-icon {
    font-size: 40px;
    color: #e53935;
    margin-bottom: 20px;
}

/* Heading styling */
.block-card h3 {
    color: #1a237e;
    margin-bottom: 15px;
    font-size: 18px;
    min-height: 50px;
    display: flex;
    align-items: center;
}

/* Bullet point list styling */
.block-card ul {
    text-align: left;
    padding-left: 20px;
    margin: 0;
    flex-grow: 1;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.block-card ul li {
    margin-bottom: 8px;
    position: relative;
}

/* Optional: Custom bullet color to match block icon */
.block-card ul li::marker {
    color: #e53935;
}


/* Expertise Section */
.expertise-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.expertise-intro {
    text-align: center;
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 40px;
    padding: 0 20px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(300px, 1fr));
    gap: 25px;
}

.expertise-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
}

.expertise-item:hover {
    background: #1a237e;
    color: white;
}

.expertise-item:hover h4,
.expertise-item:hover p {
    color: white;
}

.expertise-item:hover i {
    color: #ffcc00;
}

.expertise-item i {
    font-size: 28px;
    color: #e53935;
    margin-top: 5px;
    flex-shrink: 0;
}

.expertise-item h4 {
    color: #1a237e;
    margin-bottom: 8px;
    font-size: 18px;
}

.expertise-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* Capacity Section */
.capacity-section {
    padding: 20px 0;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.capacity-intro {
    text-align: center;
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.capacity-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.highlight-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: scale(1.05);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: white;
}

.highlight-icon.scale {
    background: linear-gradient(135deg, #1a237e, #283593);
}

.highlight-icon.flex {
    background: linear-gradient(135deg, #4caf50, #2e7d32);
}

.highlight-icon.contain {
    background: linear-gradient(135deg, #e53935, #b71c1c);
}

.highlight-icon.system {
    background: linear-gradient(135deg, #ff9800, #ef6c00);
}

.highlight-icon.safety {
    background: linear-gradient(135deg, #9c27b0, #6a1b9a);
}

.highlight-card h4 {
    color: #1a237e;
    margin-bottom: 10px;
    font-size: 16px;
}

.highlight-card p {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
}

/* Potency Section */
.potency-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* Intro Bullet Points */
.potency-intro {
    list-style: none;
    padding: 0;
    margin: 0 auto 30px;
    max-width: 900px;
}

.potency-intro li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 17px;
    line-height: 1.7;
    color: #444;
}

.potency-intro li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    color: #e53935;
    font-weight: bold;
    font-size: 18px;
}

/* Features Grid */
.potency-features.two-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Feature Card */
.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 28px;
    color: #e53935;
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}

.feature-text h4 {
    color: #1a237e;
    margin-bottom: 10px;
    font-size: 18px;
}

.feature-text p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* Quality Section */
.quality-section {
    padding: 20px 0;
    animation: fadeInUp 0.8s ease-out 1s both;
}

/* Intro Bullet List */
.quality-intro {
    list-style: none;
    padding: 0;
    margin: 0 auto 40px;
    max-width: 900px;
}

.quality-intro li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 17px;
    line-height: 1.7;
    color: #444;
}

.quality-intro li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    color: #4caf50;
    font-weight: bold;
    font-size: 18px;
}

/* Grid */
.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

/* Cards */
.quality-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #1a237e;
}

.quality-card h3 {
    color: #1a237e;
    margin-bottom: 20px;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quality-card h3 i {
    color: #4caf50;
}

/* Card List */
.quality-card ul {
    list-style: none;
    padding: 0;
}

.quality-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.quality-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}


/* Trust Section - Redesigned with Icon on Right */
.trust-section {
    background: linear-gradient(135deg, #0d1b5e 0%, #1a237e 30%, #283593 100%);
    color: white;
    padding: 50px 40px;
    border-radius: 16px;
    margin: 60px 0 50px;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 1.2s both;
    box-shadow: 0 10px 40px rgba(26, 35, 126, 0.25);
}

.trust-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.trust-section .section-header {
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.trust-section .section-header h2 {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.trust-section .section-header h2 i {
    color: #ffcc00;
}

.trust-section .header-line {
    background: linear-gradient(to right, #ffcc00, #ff9800);
}

.trust-content {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-left {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.trust-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 20px;
}

.trust-text {
    margin-bottom: 10px;
}

.trust-paragraph {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    text-align: left;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

.trust-badge {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.1));
    padding: 15px 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 200px;
    justify-content: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.trust-badge:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.15));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 204, 0, 0.5);
}

.trust-badge i {
    color: #ffcc00;
    font-size: 18px;
}

.trust-icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.trust-icon {
    font-size: 140px; /* Made very big */
    color: #ffcc00;
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.15), rgba(255, 204, 0, 0.05));
    padding: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 240px;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        inset 0 6px 30px rgba(255, 255, 255, 0.15);
    border: 3px solid rgba(255, 204, 0, 0.4);
}

/* Add floating particles effect */
.trust-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 75% 40%, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: floatParticles 20s linear infinite;
    z-index: 0;
}

@keyframes floatParticles {
    0% {
        background-position: 0 0, 40px 20px, 20px 60px;
    }
    100% {
        background-position: 80px 80px, 120px 100px, 100px 140px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .blocks-grid.five-columns {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .potency-features.two-columns {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .trust-content {
        gap: 40px;
    }
    
    .trust-icon {
        font-size: 120px;
        width: 200px;
        height: 200px;
        padding: 35px;
    }
    
    .trust-badge {
        min-width: 180px;
    }
}

@media (max-width: 992px) {
    .quality-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .overview-content {
        flex-direction: column;
    }
    
    .overview-left, .overview-right {
        width: 100%;
    }
    
    .overview-image img {
        height: 250px;
    }
    
    .trust-section {
        padding: 40px 30px;
        margin: 40px 0;
    }
    
    .trust-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .trust-right {
        order: -1;
        padding-top: 0;
    }
    
    .trust-left {
        text-align: center;
    }
    
    .trust-paragraph {
        text-align: center;
        font-size: 17px;
    }
    
    .trust-icon {
        font-size: 100px;
        width: 180px;
        height: 180px;
        padding: 30px;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .trust-badge {
        min-width: 160px;
        padding: 12px 20px;
    }
}

@media (max-width: 768px) {
    .oncology-container {
        padding: 20px 15px;
    }
    
    .section-header h2 {
        font-size: 26px;
        flex-direction: column;
        gap: 10px;
    }
    
    .overview-section,
    .expertise-section,
    .potency-section {
        padding: 30px 20px;
    }
    
    .blocks-grid.five-columns {
        grid-template-columns: 1fr;
    }
    
    .capacity-highlights {
        grid-template-columns: 1fr;
    }
    
    .compliance-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-section {
        padding: 35px 20px;
        border-radius: 12px;
    }
    
    .trust-paragraph {
        font-size: 16px;
    }
    
    .trust-icon {
        font-size: 80px;
        width: 150px;
        height: 150px;
        padding: 25px;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-badge {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 15px 20px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 22px;
    }
    
    .overview-text,
    .capacity-intro,
    .potency-intro,
    .quality-intro {
        font-size: 16px;
        padding: 0;
    }
    
    .trust-section {
        padding: 30px 15px;
    }
    
    .trust-paragraph {
        font-size: 15px;
    }
    
    .trust-icon {
        font-size: 70px;
        width: 130px;
        height: 130px;
        padding: 20px;
    }
    
    .trust-badge {
        font-size: 15px;
        padding: 12px 18px;
    }
    
    .badge {
        padding: 8px 15px;
        font-size: 12px;
    }
}

/* Animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-card {
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
}

.blog-card:nth-child(1) {
    animation-delay: 0.1s;
}

.blog-card:nth-child(2) {
    animation-delay: 0.2s;
}

.blog-card:nth-child(3) {
    animation-delay: 0.3s;
}

.blog-card:nth-child(4) {
    animation-delay: 0.4s;
}

.blog-card:nth-child(5) {
    animation-delay: 0.5s;
}

.blog-card:nth-child(6) {
    animation-delay: 0.6s;
}

/* Pharmaceutical-specific styling */
.pharma-highlight {
    color: #e53935;
    font-weight: 600;
}

.event-badge {
    background: #4caf50;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}