/* Root Variables */
:root {
    /* Primary Brand Colors */
    --primary-blue: #124f90;
    --secondary-blue: #232F58;
    --accent-red: #ce122d;
    
    /* Rigicon Logo Colors */
    --rigicon-logo-blue: #195090;
    --rigicon-logo-red: #ce0e2d;
    
    /* Extended Brand Palette */
    --premier-blue: #1B358A;
    --dark-blue: #112657;
    --light-blue: #D1D9F0;
    
    /* Background Colors */
    --background-soft: #e8eef5;
    --background-white: #ffffff;
    --light-gray: #F5F5F5;
    
    /* Text Colors */
    --text-color: #232F58;
    --text-muted: #5a6c84;
    --text-light: #8a8a8a;
    
    /* Functional Colors */
    --shadow-light: rgba(0, 0, 0, 0.04);
    --shadow-medium: rgba(0, 0, 0, 0.06);
    --shadow-strong: rgba(0, 0, 0, 0.08);
    
    /* Interactive States */
    --hover-blue: #0f4080;
    --focus-outline: #ffbf47;
    --border-color: #e8ecf1;
    --border-hover: var(--primary-blue);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* UIkit override for em elements */
em {
    color: inherit !important;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-soft);
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--secondary-blue);
}

.problem-section h1,
.problem-section h2,
.problem-section h3,
.problem-section h4,
.problem-section h5,
.problem-section h6,
.why-rigicon h1,
.why-rigicon h2,
.why-rigicon h3,
.why-rigicon h4,
.why-rigicon h5,
.why-rigicon h6,
.faqs-section h1,
.faqs-section h2,
.faqs-section h3,
.faqs-section h4,
.faqs-section h5,
.faqs-section h6,
.cta-section h1,
.cta-section h2,
.cta-section h3,
.cta-section h4,
.cta-section h5,
.cta-section h6,
.discover-section h1,
.discover-section h2,
.discover-section h3,
.discover-section h4,
.discover-section h5,
.discover-section h6 {
    color: #232f58 !important;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
}

.problem-section p,
.why-rigicon p,
.faqs-section p,
.cta-section p,
.discover-section p {
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #212121;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--hover-blue);
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.patient-p-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.patient-p-btn-primary,
.patient-p-btn-secondary,
.patient-p-btn-outline {
    display: inline-block;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.patient-p-btn-primary {
    background-color: var(--primary-blue);
    color: white;
}

.patient-p-btn-primary:hover {
    background-color: var(--hover-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-medium);
}

.patient-p-btn-secondary {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.patient-p-btn-secondary:hover {
    background-color: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}



/* Rigicon AI Chat Button Specific Styles */
.btn-rigiai {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    display: inline-block;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn-rigiai:hover {
    background-color: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

.btn-rigiai .rigiai-icon {
    width: 24px;
    height: 24px;
    background-color: rgba(18, 79, 144, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    font-size: 0.875rem;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.btn-rigiai:hover .rigiai-icon {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.patient-p-btn-outline {
    background-color: white;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    font-weight: 600;
}

.patient-p-btn-outline:hover {
    background-color: var(--primary-blue);
    color: white;
    transform: translateX(5px);
}

    .patient-p-btn-large {
        padding: 16px 32px;
        font-size: 1.125rem;
    }

    .start-chat-button {
        padding: 14px 28px;
        font-size: 1.1rem;
    }

/* Header */
.header {
    background-color: white;
    box-shadow: 0 2px 10px var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 20px var(--shadow-medium);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

.patient-p-primary-nav {
    display: flex;
    gap: 30px;
}

.patient-p-primary-nav a {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.patient-p-primary-nav a:hover {
    color: var(--primary-blue);
}

.header-controls {
    display: flex;
    gap: 15px;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
}

/* Mobile Navigation */
.patient-p-mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: white;
    z-index: 2000;
    transition: right 0.3s ease;
}

.patient-p-mobile-nav.active {
    right: 0;
}

.patient-p-mobile-nav-content {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.patient-p-mobile-nav-close {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
    margin-bottom: 30px;
}

.patient-p-mobile-nav nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.patient-p-mobile-nav nav a {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-color);
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.patient-p-mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--background-white) 100%);
    padding: 60px 0 80px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1440px;
    margin: 0 auto;
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero-image {
    flex: 1;
    height: 400px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 28px var(--shadow-strong);
}

.hero h1 {
    margin-bottom: 20px;
    color: var(--secondary-blue);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--secondary-blue);
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--secondary-blue);
    margin-bottom: 40px;
    font-weight: 500;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.trust-indicators span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.trust-indicators i {
    color: var(--primary-blue);
}

/* Hero Button Styles */
.hero-button-primary,
.hero-button-secondary {
    display: inline-block;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 1.125rem;
    font-weight: 500;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.hero-button-primary {
    background-color: var(--primary-blue);
    color: white;
}

.hero-button-primary:hover {
    background-color: var(--hover-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-medium);
}

.hero-button-secondary {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.hero-button-secondary:hover {
    background-color: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

/* Problem Section */
.problem-section {
    padding: 50px 0 80px 0;
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--secondary-blue);
}

.section-subtitle {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-muted);
    font-size: 1.25rem;
}

.section-description {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Aligned sections styling */
.problem-section .patient-p-container,
.treatment-process .patient-p-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.problem-section .section-title,
.treatment-process .section-title {
    text-align: center;
}

.problem-section p,
.treatment-process p {
    text-align: left;
}

.patient-p-problem-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* 3'lü grid için özel stil */
.patient-p-problem-cards-three {
    grid-template-columns: repeat(3, 1fr);
}

/* Tablet: Maksimum 2 kart yan yana */
@media (max-width: 1024px) and (min-width: 769px) {
    .patient-p-problem-cards-three {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobil: 1 kart */
@media (max-width: 768px) {
    .patient-p-problem-cards-three {
        grid-template-columns: 1fr;
    }
}

.patient-p-problem-card {
    background-color: white;
    border-radius: 16px;
    padding: 30px 30px 80px;
    box-shadow: 0 4px 14px var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
}

.patient-p-problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 28px var(--shadow-strong);
}

.problem-image {
    width: 100%;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 4px 14px var(--shadow-light);
}

.problem-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.patient-p-problem-card:hover .problem-image img {
    transform: scale(1.05);
}

.problem-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: white;
}

.patient-p-problem-card h3 {
    margin-bottom: 15px;
    color: var(--secondary-blue);
}

.patient-p-problem-card .patient-p-btn-outline {
    position: absolute;
    bottom: 30px;
    left: 30px;
}

.patient-p-problem-card p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.problem-learn {
    color: var(--text-color);
    font-size: 0.875rem;
}

.note {
    background-color: #E3DCB2;
    color: #000000;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.875rem;
    margin-bottom: 15px;
}

/* Process Section */
.treatment-process {
    padding: 80px 0;
    background-color: var(--background-soft);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.process-step {
    background-color: white;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    box-shadow: 0 4px 14px var(--shadow-light);
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.patient-p-step-badge {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.step-image {
    width: 100%;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 4px 14px var(--shadow-light);
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    font-size: 1.5rem;
    color: white;
}

.process-step h3 {
    margin-bottom: 15px;
}

.step-expect-content {
    margin-top: 15px;
}

.step-expect-content p {
    color: var(--text-color);
    font-size: 0.875rem;
}

.step-expect-btn {
    display: inline-block;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background-color: white;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: auto;
    align-self: flex-start;
}

.step-expect-btn:hover {
    background-color: var(--primary-blue);
    color: white;
    transform: translateX(5px);
}

.step-expect-btn i {
    transition: transform 0.3s ease;
}


@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Why Rigicon Section */
.why-rigicon {
    padding: 80px 0;
    background-color: var(--background-soft);
}

.patient-p-why-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.patient-p-why-card {
    background-color: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 14px var(--shadow-light);
    display: grid;
    grid-template-rows: auto minmax(72px, auto) 1fr;
    gap: 15px;
    position: relative;
    min-height: 450px;
    transition: all 0.3s ease;
}

.patient-p-why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px var(--shadow-strong);
}

.patient-p-why-card:hover .patient-ipp-timeline-icon {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 20px 50px rgba(18, 79, 144, 0.5);
}

.patient-p-why-card h3 {
    margin: 0;
    color: var(--secondary-blue);
    line-height: 1.3;
    display: flex;
    align-items: center;
    min-height: 72px;
}

/* Fix sup tag issues in h3 titles */
.patient-p-why-card h3 sup {
    font-size: 0.6em;
    line-height: 0;
    vertical-align: super;
    margin-left: 2px;
}

.patient-p-why-card p {
    margin: 0;
    align-self: start;
}

.patient-p-why-card .why-image {
    /* Image stays in first grid row */
    margin: 0;
}

.why-image {
    width: 100%;
    aspect-ratio: 1920/1279;
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--background-soft);
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.why-card:hover .why-image img {
    transform: scale(1.05);
}

.why-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: white;
}

.why-card h3 {
    margin-bottom: 15px;
}

.read-more-btn {
    display: inline-block;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background-color: white;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: auto;
    align-self: flex-start;
}

.read-more-btn:hover {
    background-color: var(--primary-blue);
    color: white;
    transform: translateX(5px);
}

.read-more-btn i {
    transition: transform 0.3s ease;
}

.clinical-evidence-btn {
    margin-top: auto;
    align-self: flex-start;
}

/* FAQs Section */
.faqs-section {
    padding: 80px 0;
    background-color: white;
}

.faq-items {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--background-soft);
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-item summary {
    padding: 20px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    color: var(--secondary-blue);
    list-style: none;
    transition: background-color 0.3s ease;
    outline: none;
}

.faq-item summary:focus {
    background-color: var(--light-gray);
    outline: none;
    box-shadow: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    background-color: var(--light-gray);
}

.faq-item[open] summary {
    border-bottom: none;
}

.faq-item summary i:first-child {
    color: var(--primary-blue);
    font-size: 1.25rem;
}

.faq-item summary i:last-child {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.faq-content {
    padding: 20px 30px 30px;
    color: var(--text-muted);
}

.faq-content ul {
    margin-left: 20px;
    margin-top: 10px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--background-white) 100%);
}

.cta-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.cta-card {
    background-color: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 28px var(--shadow-strong);
}

.cta-image {
    width: 100%;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 14px var(--shadow-light);
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: white;
}

.cta-card h3 {
    margin-bottom: 20px;
}

.cta-card h4 {
    margin: 20px 0 10px;
    color: var(--secondary-blue);
}

.cta-card ul {
    margin-left: 20px;
    margin-bottom: 30px;
    color: var(--text-muted);
}

/* Rigicon AI Section */
.rigiai-section {
    padding: 80px 0;
    background-color: var(--secondary-blue);
    color: white;
}

.rigiai-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1440px;
    margin: 0 auto;
}

.rigiai-text {
    flex: 1;
    text-align: left;
}

.rigiai-image {
    flex: 1;
    height: 400px;
}

.rigiai-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 28px var(--shadow-strong);
}

.rigiai-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.rigiai-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
}

.rigiai-section h2 {
    color: white;
    margin: 0;
}

.rigiai-section p {
    font-size: 1.125rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.rigiai-features {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
}

.rigiai-features h3 {
    color: white;
    margin-bottom: 20px;
}

.rigiai-features ul {
    list-style: none;
    text-align: left;
    display: inline-block;
}

.rigiai-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.rigiai-features i {
    color: var(--light-blue);
}

.rigiai-privacy {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.rigiai-privacy i {
    font-size: 1.5rem;
    color: var(--light-blue);
}

.rigiai-availability {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-top: 20px;
}

/* Discover Section */
.discover-section {
    padding: 60px 0;
    background-color: white;
}

.discover-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* Patient Education Resources - 2 column layout */
.education-resources-grid {
    grid-template-columns: repeat(2, 1fr) !important;
}

/* Increase image height for education resources */
.education-resources-grid .discover-image {
    height: 250px;
}

.discover-card {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 14px var(--shadow-light);
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.discover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 28px var(--shadow-strong);
}

.discover-image {
    width: 100%;
    aspect-ratio: 1920/1279;
    overflow: hidden;
}

.discover-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.discover-card:hover .discover-image img {
    transform: scale(1.05);
}

.discover-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.discover-title {
    color: var(--secondary-blue);
    margin-bottom: 10px;
}

.discover-description {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.learn-more-button {
    color: var(--primary-blue);
    font-weight: 500;
    display: inline-block;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    align-self: flex-start;
}

/* Rigicon Talks Container */
.rigicon-talks-container {
    background-color: white;
    border-radius: 24px;
    padding: 40px;
    margin: 60px 0;
    box-shadow: 0 8px 32px var(--shadow-medium);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.rigicon-talks-container:hover {
    box-shadow: 0 12px 40px var(--shadow-strong);
}

.rigicon-talks-container .section-subtitle {
    margin-bottom: 20px;
    color: var(--primary-blue);
    font-size: 1.75rem;
}

.rigicon-talks-container .section-description {
    margin-bottom: 35px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Rigicon Talks Platform Cards */
.rigicon-talks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 0;
}

.talks-platform-card {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 35px 20px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(18, 79, 144, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    position: relative;
    overflow: hidden;
}

.talks-platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.talks-platform-card:hover::before {
    left: 100%;
}

.talks-platform-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(18, 79, 144, 0.15);
    border-color: var(--light-blue);
}

.platform-icon {
    font-size: 3rem;
    margin-bottom: 18px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.talks-platform-card:hover .platform-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.platform-name {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-blue);
    transition: color 0.3s ease;
}

.talks-platform-card:hover .platform-name {
    color: var(--primary-blue);
}

/* Platform specific colors */
.talks-platform-card.youtube .platform-icon {
    color: #FF0000;
}

.talks-platform-card.youtube:hover {
    border-color: #FF0000;
    box-shadow: 0 12px 35px rgba(255, 0, 0, 0.15);
}

.talks-platform-card.spotify .platform-icon {
    color: #1DB954;
}

.talks-platform-card.spotify:hover {
    border-color: #1DB954;
    box-shadow: 0 12px 35px rgba(29, 185, 84, 0.15);
}

.talks-platform-card.apple .platform-icon {
    color: #000000;
}

.talks-platform-card.apple:hover {
    border-color: #666666;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.talks-platform-card.tiktok .platform-icon {
    color: #000000;
}

.talks-platform-card.tiktok:hover {
    border-color: #ff0050;
    box-shadow: 0 12px 35px rgba(255, 0, 80, 0.15);
}

/* Disclaimer Section */
.disclaimer-section {
    margin-top: 40px;
    padding: 30px;
    background-color: #FBF8F1;
    border-radius: 16px;
    text-align: left;
}

.disclaimer-section .section-subtitle {
    text-align: left !important;
    margin-bottom: 20px;
}

.disclaimer-text {
    color: #000000 !important;
    font-size: 0.875rem;
    margin: 0 0 15px 0;
    text-align: left;
}

.disclaimer-text:last-child {
    margin-bottom: 0;
}

/* Footer */
.footer {
    background-color: #194f90;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-section h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.2;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 10px;
    line-height: 1.4;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}



.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-subnav {
    display: flex;
    gap: 20px;
}

.footer-subnav a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-subnav a:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 15px;
    width: 100%;
    justify-content: flex-end;
    margin-bottom: 15px;
    order: -1;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    transition: color 0.3s ease;
    display: inline-block;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.2);
}

.copyright {
    opacity: 0.6;
    font-size: 0.875rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .patient-p-page-nav-box {
        padding: 25px 30px;
        margin: 0;
        width: calc(100% - 40px);
        margin-left: auto;
        margin-right: auto;
    }
    
    .patient-p-nav-pill {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
    
    .patient-p-primary-nav {
        display: none;
    }
    
    .header-controls {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-content {
        flex-direction: column-reverse;
        gap: 40px;
    }
    
    .hero-text {
        text-align: left;
    }
    
    .hero-image {
        width: 100%;
        max-width: 500px;
        height: 350px;
        margin: 0 auto;
    }
    
    .problem-cards,
    .process-steps,
    .timeline-items,
    .why-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .cta-cards {
        grid-template-columns: 1fr;
    }
    
    .rigiai-content {
        flex-direction: column-reverse;
        gap: 40px;
        text-align: center;
    }
    
    .rigiai-text {
        text-align: center;
    }
    
    .rigiai-image {
        width: 100%;
        max-width: 500px;
        height: 350px;
        margin: 0 auto;
    }
    
    .discover-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Keep education resources at 3 columns for tablet */
    .education-resources-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    
    .rigicon-talks-container {
        margin: 40px 0;
        padding: 30px;
    }
    
    .rigicon-talks-container .section-subtitle {
        font-size: 1.5rem;
    }
    
    .rigicon-talks-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .patient-p-on-this-page {
        padding: 30px 0;
    }
    
    .patient-p-page-nav-box {
        padding: 20px 25px;
        margin: 0;
        border-radius: 16px;
        width: calc(100% - 30px);
        margin-left: auto;
        margin-right: auto;
    }
    
    .patient-p-page-nav-title {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .patient-p-page-nav {
        gap: 10px;
    }
    
    .patient-p-nav-pill {
        font-size: 0.85rem;
        padding: 8px 16px;
        border-radius: 20px;
    }
    
    .patient-p-container {
        padding: 0 15px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-button-primary,
    .hero-button-secondary {
        align-self: flex-start;
        text-align: left;
        justify-content: flex-start;
        width: auto !important;
        max-width: 100%;
    }
    
    .cta-btn {
        align-self: flex-start;
        text-align: left;
        justify-content: flex-start;
    }
    
    .trust-indicators {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .rigicon-talks-container {
        margin: 30px 0;
        padding: 25px 20px;
    }
    
    .rigicon-talks-container .section-subtitle {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .rigicon-talks-container .section-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .problem-cards,
    .process-steps,
    .timeline-items,
    .why-cards,
    .discover-grid {
        grid-template-columns: 1fr;
    }
    
    /* Make education resources single column on mobile */
    .education-resources-grid {
        grid-template-columns: 1fr !important;
    }
    
    .rigicon-talks-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .talks-platform-card {
        padding: 25px 20px;
        min-height: 120px;
    }
    
    .platform-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-subnav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .footer-social {
        justify-content: center;
        order: 0;
        margin-bottom: 10px;
    }
    
    .patient-p-btn-large {
        width: 100%;
        justify-content: center;
    }

    .start-chat-button {
        width: 100%;
        justify-content: center;
        margin-top: auto;
        align-self: stretch;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .patient-p-page-nav-box {
        padding: 15px 20px;
        margin: 0;
        width: calc(100% - 20px);
        margin-left: auto;
        margin-right: auto;
    }
    
    .patient-p-page-nav {
        gap: 8px;
        flex-direction: column;
        align-items: center;
    }
    
    .patient-p-nav-pill {
        font-size: 0.8rem;
        padding: 6px 14px;
        min-width: 140px;
        justify-content: center;
    }
    
    .section-title {
        margin-bottom: 30px;
    }
    
    .problem-card,
    .process-step,
    .timeline-item,
    .why-card {
        padding: 20px;
    }
    
    .cta-card {
        padding: 30px 20px;
    }
    
    .faq-item summary {
        padding: 15px 20px;
    }
    
    .faq-content {
        padding: 0 20px 20px;
    }

    .start-chat-button {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

/* Sup styling for trademarks */
sup {
    top: -0.7em !important;
    font-size: 51% !important;
}

/* Sup2 styling for references (no top positioning) */
sup.sup2,
.sup2 {
    font-size: 75% !important;
    top: -5px !important;
}

/* Sup3 styling for disclaimer (higher positioning) */
sup.sup3,
.sup3 {
    font-size: 75% !important;
    top: -4px !important;
}

/* Start Chat Button Specific Styles */
.start-chat-button {
    background: linear-gradient(90deg, #F36C6C 0%, #A14EF6 50%, #3A6CF6 100%);
    color: white;
    display: inline-block;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    margin-top: auto;
    align-self: flex-start;
}

.start-chat-button .ai-icon {
    width: 18px;
    height: 18px;
    filter: brightness(0) saturate(100%) invert(100%);
    transition: filter 0.3s ease;
}

.start-chat-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-medium);
}

/* Video Questions Accordion */
.video-questions-section {
    margin-top: 15px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
}

.video-questions-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background-color: var(--background-soft);
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-blue);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.video-questions-toggle:hover {
    background-color: #e8eef5;
}

.video-questions-toggle.active {
    background-color: var(--primary-blue);
    color: white;
}

.video-questions-toggle span {
    font-size: 1rem;
    font-weight: 600;
}

.toggle-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-questions-toggle.active .toggle-icon {
    background-color: white;
}

.toggle-icon i {
    color: white;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.video-questions-toggle.active .toggle-icon i {
    color: var(--primary-blue);
}

.video-questions-content {
    display: none;
    background-color: white;
}

.video-questions-table-container {
    padding: 20px;
}

.video-questions-table-container h4 {
    color: var(--secondary-blue);
    margin-bottom: 20px;
    font-size: 1.25rem;
    font-weight: 600;
}

.video-questions-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px var(--shadow-light);
}

.video-questions-table th,
.video-questions-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.video-questions-table th {
    background-color: var(--primary-blue);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.video-questions-table th:last-child {
    width: 60px;
    text-align: center;
}

.play-cell {
    width: 60px;
    text-align: center;
    padding: 12px 8px !important;
}

.play-cell i {
    color: var(--primary-blue);
    font-size: 1.2rem;
    transition: all 0.2s ease;
}

.video-questions-table tr:hover .play-cell i {
    color: var(--accent-blue);
    transform: scale(1.1);
}

.video-questions-table td {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.4;
}

.video-questions-table td:first-child {
    font-weight: 600;
    color: var(--primary-blue);
    width: 80px;
    text-align: center;
    background-color: var(--background-soft);
}

.video-questions-table tr:nth-child(even) {
    background-color: var(--background-soft);
}

.video-questions-table tr:hover {
    background-color: #f0f4f8;
    transform: translateY(-1px);
    transition: all 0.2s ease;
}

.video-questions-table tr {
    transition: all 0.2s ease;
}

/* Responsive Table */
@media (max-width: 768px) {
    .video-questions-table-container {
        padding: 15px;
    }

    .video-questions-table {
        font-size: 0.85rem;
    }

    .video-questions-table th,
    .video-questions-table td {
        padding: 8px 10px;
    }

    .video-questions-table td:first-child {
        width: 60px;
        font-size: 0.8rem;
    }

    .video-questions-table th:last-child,
    .play-cell {
        width: 45px;
    }

    .play-cell i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .video-questions-table-container h4 {
        font-size: 1.1rem;
    }

    .video-questions-table {
        font-size: 0.8rem;
    }

    .video-questions-table th,
    .video-questions-table td {
        padding: 6px 8px;
    }

    .video-questions-toggle {
        padding: 14px 16px;
    }

    .video-questions-toggle span {
        font-size: 0.9rem;
    }

    .toggle-icon {
        width: 28px;
        height: 28px;
    }
}

/* Homepage On This Page Navigation */
.patient-p-on-this-page {
    padding: 40px 0;
    background-color: white;
}

.patient-p-page-nav-box {
    background-color: white;
    border-radius: 20px;
    padding: 30px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f5f5f5;
    width: 100%;
}

.patient-p-page-nav-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--secondary-blue);
    margin-bottom: 20px;
    text-align: center;
}

.patient-p-page-nav {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.patient-p-nav-pill {
    display: inline-block;
    align-items: center;
    padding: 12px 24px;
    background-color: #f8f6f1;
    color: var(--secondary-blue);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid #e8e6e1;
}

.patient-p-nav-pill:hover {
    background-color: #f0ede6;
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.patient-p-nav-pill:active {
    transform: translateY(0);
}

/* Accessibility */
:focus {
    outline: none;
}

:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* Loading State */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* IPP Page Specific Styles */

/* On This Page Navigation */
.patient-ipp-on-this-page {
    padding: 30px 0;
    background-color: white;
}

.patient-ipp-page-nav-box {
    background-color: white;
    border-radius: 20px;
    padding: 30px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f5f5f5;
    width: 100%;
}

.patient-ipp-page-nav-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--secondary-blue);
    margin-bottom: 20px;
    text-align: center;
}

.patient-ipp-page-nav {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.patient-ipp-nav-pill {
    display: inline-block;
    align-items: center;
    padding: 12px 24px;
    background-color: #f8f6f1;
    color: var(--secondary-blue);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid #e8e6e1;
}

.patient-ipp-nav-pill:hover {
    background-color: #f0ede6;
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.patient-ipp-nav-pill:active {
    transform: translateY(0);
}

/* Self-Check Section */
.patient-ipp-self-check-section {
    padding: 40px 0 60px 0;
    background-color: var(--background-soft);
    width: 100%;
    margin: 0;
}

.patient-ipp-self-check-box {
    background-color: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    max-width: 1440px;
    margin: 0 auto;
}

.patient-ipp-self-check-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.patient-ipp-self-check-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    box-shadow: 0 4px 14px var(--shadow-light);
    display: flex;
    flex-direction: column;
    min-height: 400px;
    transition: all 0.3s ease;
}

.patient-ipp-self-check-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 28px var(--shadow-strong);
}

.patient-ipp-check-number {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.patient-ipp-check-icon {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(18, 79, 144, 0.3);
    z-index: 1;
    font-size: 1.25rem;
}

.patient-ipp-check-image {
    width: 100%;
    aspect-ratio: 1920/1279;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 15px;
    background-color: white;
}

.patient-ipp-check-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.patient-ipp-self-check-card h3 {
    margin-bottom: 15px;
    color: var(--secondary-blue);
}

.patient-ipp-self-check-card p {
    color: var(--text-muted);
    flex-grow: 1;
}

/* How It Works Section */
.patient-ipp-how-it-works-section {
    padding: 60px 0;
    background-color: var(--background-soft);
}

.patient-ipp-how-it-works-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.patient-ipp-step-card {
    background-color: white;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    box-shadow: 0 4px 14px var(--shadow-light);
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.patient-ipp-step-number {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.patient-ipp-step-image {
    width: 100%;
    aspect-ratio: 1920/1279;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 15px;
    background-color: var(--background-soft);
}

.patient-ipp-step-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.patient-ipp-step-image:hover img {
    transform: scale(1.05);
}

.patient-ipp-step-card h3 {
    margin-bottom: 15px;
    color: var(--secondary-blue);
}

.patient-ipp-step-card p {
    color: var(--text-muted);
    flex-grow: 1;
}

.patient-ipp-technical-note {
    text-align: center;
    margin-top: 20px;
}

.patient-ipp-technical-note p {
    color: #999999;
    font-style: italic;
    font-size: 0.875rem;
}

.patient-ipp-technical-note p em {
    color: #999999 !important;
    font-style: italic;
}

/* Timeline Section */
.patient-ipp-timeline-section {
    padding: 40px 0;
    background-color: var(--background-soft);
}

.patient-ipp-timeline-section .patient-p-container {
    background-color: white;
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: 0 8px 32px var(--shadow-medium);
    border: 1px solid var(--border-color);
}

.patient-ipp-timeline-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.patient-ipp-timeline-card {
    background-color: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 14px var(--shadow-light);
    text-align: center;
    transition: all 0.3s ease;
}

.patient-ipp-timeline-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px var(--shadow-strong);
}

.patient-ipp-timeline-card:hover .patient-ipp-timeline-icon {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 20px 50px rgba(18, 79, 144, 0.5);
}

.patient-ipp-timeline-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    box-shadow: 0 8px 32px rgba(18, 79, 144, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.patient-ipp-timeline-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #ffffff20, transparent);
    border-radius: 50%;
    z-index: -1;
}

.patient-ipp-timeline-icon:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 16px 40px rgba(18, 79, 144, 0.4);
}

.patient-ipp-timeline-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.patient-ipp-timeline-icon i {
    font-size: 3rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.patient-ipp-timeline-icon:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.patient-ipp-timeline-card h3 {
    margin-bottom: 15px;
    color: var(--secondary-blue);
}

.patient-ipp-timeline-card p {
    color: var(--text-muted);
    text-align: left;
}

.patient-ipp-risks-section {
    background-color: var(--background-soft);
    border-radius: 16px;
    padding: 30px;
    margin-top: 40px;
}

.patient-ipp-risks-section h3 {
    margin-bottom: 15px;
    color: var(--secondary-blue);
}

.patient-ipp-risks-section p {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.patient-ipp-recovery-note {
    font-style: italic;
    font-size: 0.875rem;
}

.patient-ipp-recovery-note em {
    color: var(--text-muted) !important;
    font-style: italic;
}

/* Why Infla10 Section */
.patient-ipp-why-infla10-section {
    padding: 40px 0;
    background-color: var(--background-soft);
}

.patient-ipp-model-comparison {
    margin-top: 40px;
    background-color: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 28px var(--shadow-medium);
}

.patient-ipp-model-comparison h3 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--secondary-blue);
}

.patient-ipp-model-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.patient-ipp-model-image {
    position: sticky;
    top: 20px;
}

.patient-ipp-model-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 24px var(--shadow-medium);
    transition: transform 0.3s ease;
}

.patient-ipp-model-image img:hover {
    transform: scale(1.02);
}

.patient-ipp-model-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.patient-ipp-model-card {
    background-color: var(--background-soft);
    border-radius: 16px;
    padding: 25px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.patient-ipp-model-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-3px);
}

.patient-ipp-model-card h4 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.125rem;
}

.patient-ipp-model-card ul {
    list-style: none;
    padding: 0;
}

.patient-ipp-model-card li {
    color: var(--text-muted);
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.patient-ipp-model-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

.patient-ipp-reference-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: italic;
}

/* FAQs Section */
.patient-ipp-faqs-section {
    padding: 60px 0;
    background-color: white;
}

.patient-ipp-faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.patient-ipp-faq-item {
    background-color: var(--background-soft);
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
}

.patient-ipp-faq-item summary {
    padding: 20px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    color: var(--secondary-blue);
    list-style: none;
    transition: background-color 0.3s ease;
    outline: none;
}

.patient-ipp-faq-item summary:focus {
    background-color: var(--light-gray);
    outline: none;
    box-shadow: none;
}

.patient-ipp-faq-item summary::-webkit-details-marker {
    display: none;
}

.patient-ipp-faq-item summary:hover {
    background-color: var(--light-gray);
}

.patient-ipp-faq-item[open] summary {
    border-bottom: none;
}

.patient-ipp-faq-item summary i:first-child {
    color: var(--primary-blue);
    font-size: 1.25rem;
}

.patient-ipp-faq-item summary i:last-child {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.patient-ipp-faq-content {
    padding: 20px 30px 30px;
    color: var(--text-muted);
}

.patient-ipp-faq-content ul {
    margin-left: 20px;
    margin-top: 10px;
}

/* Video Section */
.patient-ipp-video-section {
    padding: 20px 0 40px 0;
    background-color: var(--background-soft);
}

.patient-ipp-video-section .patient-p-container {
    background-color: white;
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: 0 8px 32px var(--shadow-medium);
    border: 1px solid var(--border-color);
}

.patient-ipp-video-container {
    max-width: 1200px;
    margin: 0 auto;
}

.patient-ipp-video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
    align-items: start;
}

.patient-ipp-video-single {
    display: flex;
    justify-content: center;
}

.patient-ipp-video-single .patient-ipp-video-box {
    max-width: 600px;
    width: 100%;
}

.patient-ipp-video-box {
    background-color: white;
    border-radius: 16px;
    overflow: visible;
    box-shadow: 0 4px 14px var(--shadow-light);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.patient-ipp-video-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 28px var(--shadow-strong);
}

.patient-ipp-video-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.patient-ipp-video-content a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.patient-ipp-video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background-color: var(--background-soft);
    border-radius: 16px;
}

.patient-ipp-video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.patient-ipp-video-box:hover .patient-ipp-video-thumbnail img {
    transform: scale(1.05);
}

.patient-ipp-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(18, 79, 144, 0.2) 0%, rgba(206, 18, 45, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.patient-ipp-video-box:hover .patient-ipp-video-overlay {
    opacity: 1;
}

.patient-ipp-video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-blue);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 2;
}

.patient-ipp-video-box:hover .patient-ipp-video-play-btn {
    background-color: var(--primary-blue);
    color: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.patient-ipp-video-title {
    padding: 15px 25px 10px;
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--secondary-blue);
    line-height: 1.4;
    text-align: left;
}

.patient-ipp-video-box:hover .patient-ipp-video-title {
    color: var(--primary-blue);
}

/* CTA Section */
.patient-ipp-cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--background-white) 100%);
}

.patient-ipp-privacy-assurance {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
}

.patient-ipp-privacy-assurance p {
    color: var(--text-color);
    margin: 0;
    font-size: 0.875rem;
}

/* Responsive Design for IPP Sections */
@media (max-width: 1024px) {
    .patient-ipp-page-nav-box {
        padding: 25px 30px;
        margin: 0;
        width: calc(100% - 40px);
        margin-left: auto;
        margin-right: auto;
    }
    
    .patient-ipp-page-nav {
        gap: 12px;
    }
    
    .patient-ipp-nav-pill {
        font-size: 0.85rem;
        padding: 8px 16px;
    }
    
    .patient-ipp-self-check-cards,
    .patient-ipp-how-it-works-steps,
    .patient-ipp-timeline-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .patient-ipp-video-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 25px;
    }

    .patient-ipp-video-box {
        min-height: auto;
    }

    .patient-ipp-video-title {
        font-size: 1rem;
        padding: 15px 20px 10px;
    }

    .video-questions-section {
        margin-top: 10px;
    }
    
    .patient-ipp-video-section .patient-p-container,
    .patient-ipp-timeline-section .patient-p-container {
        padding: 40px 30px;
        margin: 0 20px;
    }
    
    .patient-ipp-model-showcase {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .patient-ipp-model-image {
        position: static;
    }
    
    .patient-ipp-model-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .patient-ipp-on-this-page {
        padding: 20px 0;
    }
    
    .patient-ipp-page-nav-box {
        padding: 20px 25px;
        margin: 0;
        border-radius: 16px;
        width: calc(100% - 30px);
        margin-left: auto;
        margin-right: auto;
    }
    
    .patient-ipp-page-nav-title {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .patient-ipp-page-nav {
        gap: 8px;
    }
    
    .patient-ipp-nav-pill {
        font-size: 0.85rem;
        padding: 8px 14px;
        border-radius: 20px;
    }

    .patient-ipp-self-check-box {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .patient-ipp-self-check-cards,
    .patient-ipp-how-it-works-steps,
    .patient-ipp-timeline-cards {
        grid-template-columns: 1fr;
    }
    
    .patient-ipp-video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .patient-ipp-video-title {
        font-size: 1rem;
        padding: 20px;
    }
    
    .patient-ipp-video-section .patient-p-container,
    .patient-ipp-timeline-section .patient-p-container {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .patient-ipp-model-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .patient-ipp-model-image {
        order: -1;
    }
    
    .patient-ipp-model-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .patient-ipp-self-check-card,
    .patient-ipp-step-card,
    .patient-ipp-timeline-card {
        padding: 20px;
    }
    
    .patient-ipp-model-comparison {
        padding: 30px 20px;
    }
    
    .patient-ipp-faq-item summary {
        padding: 15px 20px;
    }
    
    .patient-ipp-faq-content {
        padding: 0 20px 20px;
    }
}

@media (max-width: 480px) {
    .patient-ipp-page-nav-box {
        padding: 15px 20px;
        margin: 0;
        width: calc(100% - 20px);
        margin-left: auto;
        margin-right: auto;
    }
    
    .patient-ipp-page-nav {
        gap: 8px;
        flex-direction: column;
        align-items: center;
    }
    
    .patient-ipp-nav-pill {
        font-size: 0.8rem;
        padding: 6px 14px;
        min-width: 120px;
        justify-content: center;
    }
    
    .patient-ipp-self-check-card,
    .patient-ipp-step-card {
        min-height: auto;
    }
    
    .patient-ipp-check-image,
    .patient-ipp-step-image {
        height: 150px;
    }

    .patient-ipp-video-title {
        font-size: 0.95rem;
        padding: 15px 20px 10px;
        line-height: 1.3;
    }

    .video-questions-section {
        margin-top: 10px;
    }

    .video-questions-toggle {
        padding: 12px 16px;
    }

    .video-questions-toggle span {
        font-size: 0.9rem;
    }

    .toggle-icon {
        width: 26px;
        height: 26px;
    }
    
    .patient-ipp-video-title {
        font-size: 0.95rem;
        padding: 15px;
        line-height: 1.3;
    }
    
    .patient-ipp-video-play-btn {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
    }
    
    .patient-ipp-video-section .patient-p-container,
    .patient-ipp-timeline-section .patient-p-container {
        padding: 25px 15px;
        margin: 0 10px;
        border-radius: 16px;
    }
    
    .patient-ipp-model-card {
        padding: 20px;
    }
}

/* Video Lightbox Styles */
.video-lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease-out;
}

.video-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.video-lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 90vh;
    max-height: 800px;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: slideIn 0.3s ease-out;
}

.video-lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.video-lightbox-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.video-lightbox-close:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.video-lightbox-player {
    flex: 1;
    position: relative;
    width: 100%;
    height: 100%;
}

#video-player-container {
    width: 100%;
    height: 100%;
    background: #000;
}

#video-player-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .video-lightbox-content {
        width: 95%;
        height: 85vh;
        max-height: 600px;
    }

    .video-lightbox-close {
        width: 35px;
        height: 35px;
        font-size: 14px;
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .video-lightbox-content {
        width: 98%;
        height: 80vh;
        max-height: 500px;
    }
}

/* Desktop Styles */
@media (min-width: 1025px) {
    .hero {
        padding: 60px 0 120px 0;
    }
}



/* Problem Section Styles */
.problem-section {
    padding: 50px 0 80px 0;
    background-color: white;
}

.problem-section-box {
    background-color: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.patient-p-problem-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* 3'lü grid özel kuralı - öncelik için buraya da ekliyoruz */
.patient-p-problem-cards.patient-p-problem-cards-three {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) and (min-width: 769px) {
    .patient-p-problem-cards.patient-p-problem-cards-three {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .patient-p-problem-cards {
        grid-template-columns: 1fr;
    }
    
    .patient-p-problem-cards.patient-p-problem-cards-three {
        grid-template-columns: 1fr;
    }
    
    .problem-section-box {
        padding: 30px 20px;
        margin: 0 10px;
    }
}

.patient-p-problem-card {
    background-color: white;
    border-radius: 16px;
    padding: 30px 30px 80px;
    box-shadow: 0 4px 14px var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    /* Use flex to balance content naturally */
}

.patient-p-problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 28px var(--shadow-strong);
}

.problem-image {
    width: 100%;
    height: auto;
    /* Set to auto for natural image scaling without distortion or empty space */
    border-radius: 0 0 16px 16px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 4px 14px var(--shadow-light);
    position: relative;
}

/* Responsive image heights for better mobile and tablet experience */
/* Removed fixed height media queries; auto height handles responsive scaling naturally */

/* Removed fixed height media queries; auto height handles responsive scaling naturally across all devices */

.problem-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    /* Contain ensures the full image is visible without cropping or empty space */
    transition: transform 0.3s ease;
    display: block;
}

.product-badge {
    background-color: #232f59;
    color: white;
    padding: 8px 16px;
    border-radius: 16px 16px 0 0;
    font-size: 0.813rem;
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(35, 47, 89, 0.3);
    letter-spacing: 0.3px;
    text-align: center;
    margin-bottom: 0;
}

/* Further reduce product badge font size on mobile for even better fit */
@media (max-width: 768px) {
    .product-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}

.patient-p-problem-card:hover .problem-image img {
    transform: scale(1.05);
}

.patient-p-problem-card h3 {
    margin-bottom: 15px;
    color: var(--secondary-blue);
}

.patient-p-problem-card .patient-p-btn-outline {
    position: absolute;
    bottom: 30px;
    left: 30px;
}

.patient-p-problem-card p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

/* Print Styles */
@media print {

    .header,
    .patient-p-mobile-nav,
    .hero-actions,
    .patient-p-btn-primary,
    .patient-p-btn-secondary,
    .patient-p-btn-outline,
    .rigiai-section,
    .footer {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .patient-p-container {
        max-width: 100%;
    }
}

/* Comparison Table Styles - Modern UI/UX Enhanced */
#comparison.patient-ipp-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.shadow-box-container {
    position: relative;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(18, 79, 144, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
    background: var(--background-white);
    scroll-behavior: smooth;
}

/* Tablo navigasyon butonları - shadow-box-container'a göre sabit pozisyon */
.table-nav-btn {
    display: none;
    position: absolute;
    right: 20px;
    width: 36px;
    height: 36px;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(18, 79, 144, 0.3);
    transition: background-color 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.table-nav-btn.active {
    opacity: 1;
    pointer-events: auto;
}

.table-nav-btn:hover {
    background: var(--secondary-blue);
}

.table-nav-btn:active {
    background: #0d3a5c;
}

.table-nav-left {
    top: calc(50% + 30px);
    transform: translateY(-50%) translateY(-22px);
}

.table-nav-right {
    top: calc(50% + 30px);
    transform: translateY(-50%) translateY(22px);
}

.table-nav-btn i {
    font-size: 16px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--background-white);
    font-size: 15px;
    min-width: 950px;
    position: relative;
}

.comparison-table th,
.comparison-table td {
    padding: 20px 24px;
    text-align: left;
    border-bottom: 1px solid rgba(232, 236, 241, 0.6);
    vertical-align: top;
    transition: all 0.2s ease;
}

.comparison-table th {
    background: linear-gradient(135deg, var(--background-soft) 0%, #f8fafb 100%);
    font-weight: 600;
    color: var(--text-color);
    border-bottom: 2px solid rgba(18, 79, 144, 0.1);
    position: sticky;
    top: 0;
    z-index: 2;
    font-size: 16px;
}

.comparison-table th.feature-column {
    width: 28%;
    min-width: 140px;
    position: relative;
}

.comparison-table th.feature-column::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 2px;
    background: linear-gradient(180deg, transparent 0%, var(--primary-blue) 30%, var(--primary-blue) 70%, transparent 100%);
}

.comparison-table th.product-column {
    width: 24%;
    min-width: 220px;
    text-align: center;
    color: var(--primary-blue);
    position: relative;
    font-size: 17px;
}

.comparison-table th.product-column::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 2px;
}

.comparison-table tbody tr {
    position: relative;
    transition: all 0.3s ease;
}

.comparison-table tbody tr:hover {
    background: linear-gradient(135deg, rgba(18, 79, 144, 0.02) 0%, rgba(232, 236, 241, 0.3) 100%);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(18, 79, 144, 0.08);
}

.comparison-table tbody tr:hover .feature-cell {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    font-weight: 700;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.feature-cell {
    background: linear-gradient(135deg, var(--background-soft) 0%, #e8eef5 100%);
    color: var(--text-color);
    font-weight: 600;
    border-right: 2px solid rgba(18, 79, 144, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.feature-cell strong {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-cell strong::before {
    content: '▶';
    color: var(--primary-blue);
    font-size: 12px;
    transition: all 0.3s ease;
}

.comparison-table tbody tr:hover .feature-cell strong::before {
    content: '▶';
    color: white;
    transform: rotate(90deg);
}

.detail-cell {
    color: var(--text-color);
    line-height: 1.6;
    border-right: 1px solid rgba(232, 236, 241, 0.4);
    position: relative;
    font-size: 14px;
}

.detail-cell:last-child {
    border-right: none;
}

/* Add visual indicators for better/worse features */
.comparison-table tbody tr:nth-child(2) .detail-cell:nth-child(2)::after,
.comparison-table tbody tr:nth-child(4) .detail-cell:nth-child(2)::after {
    content: '★';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: #fbbf24;
    font-size: 16px;
}

.comparison-table tbody tr:nth-child(2) .detail-cell:nth-child(3)::after,
.comparison-table tbody tr:nth-child(6) .detail-cell:nth-child(3)::after {
    content: '★';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: #fbbf24;
    font-size: 16px;
}

/* Add stars to Lifetime Warranty row (last row) */
.comparison-table tbody tr:last-child .detail-cell::after {
    content: '★';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: #fbbf24;
    font-size: 16px;
}

/* Comparison Note */
.comparison-note {
    margin-top: 24px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(18, 79, 144, 0.05) 0%, rgba(232, 236, 241, 0.15) 100%);
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
    position: relative;
    overflow: hidden;
}

.comparison-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-blue) 0%, var(--accent-red) 100%);
}

.comparison-note p {
    margin: 0;
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.comparison-note i {
    color: var(--primary-blue);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.comparison-note strong {
    color: var(--primary-blue);
}

/* Feature column her zaman sticky */
.comparison-table th.feature-column,
.comparison-table td.feature-cell {
    position: sticky;
    left: 0;
    z-index: 3;
}

/* Responsive design for comparison table */
@media (max-width: 768px) {
    #comparison.patient-ipp-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .comparison-table-wrapper {
        margin: 20px -20px;
        border-radius: 8px;
        box-shadow: 0 2px 12px rgba(18, 79, 144, 0.1);
    }
    
    .comparison-table {
        font-size: 14px;
        min-width: 800px;
    }
    
    /* Feature column'a mobilde shadow ekliyoruz */
    .comparison-table th.feature-column,
    .comparison-table td.feature-cell {
        box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 16px 20px;
    }
    
    .comparison-table th.feature-column {
        width: 32%;
        min-width: 120px;
    }
    
    .comparison-table th.product-column {
        width: 34%;
        min-width: 180px;
        font-size: 15px;
    }
    
    .detail-cell {
        font-size: 13px;
    }
    
    .comparison-note {
        margin: 20px -20px 0;
        border-radius: 0;
        padding: 16px 20px;
    }
    
    .comparison-note p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    #comparison.patient-ipp-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    .comparison-table {
        min-width: 520px;
        font-size: 13px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 14px 16px;
    }
    
    .comparison-table th.product-column {
        font-size: 14px;
    }
    
    .detail-cell {
        font-size: 12px;
    }
    
    .comparison-note p {
        font-size: 13px;
        flex-direction: column;
        gap: 8px;
    }
    
    .comparison-note i {
        align-self: flex-start;
    }
}

/* Universal Pending Activation Notice Styles */

/* Light Background Notice */
.pending-activation-notice {
    margin: 15px 0;
    padding: 12px 16px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.15);
}

.notice-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.notice-content i {
    color: #d97706;
    font-size: 1.25rem;
}

.notice-text {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #92400e;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Dark Background Notice */
.pending-activation-notice-dark {
    margin: 30px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    text-align: center;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.notice-content-dark {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.notice-content-dark i {
    color: #fbbf24;
    font-size: 1.25rem;
}

.notice-text-dark {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: white;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Responsive Design */
@media (max-width: 768px) {

    .pending-activation-notice,
    .pending-activation-notice-dark {
        margin: 10px 0;
        padding: 10px 12px;
    }

    .notice-text,
    .notice-text-dark {
        font-size: 0.9rem;
    }

    .notice-content i,
    .notice-content-dark i {
        font-size: 1.1rem;
    }
}

/* Disabled Card Styles */
.disabled-card {
    pointer-events: none;
    cursor: not-allowed;
    position: relative;
}

.disabled-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}


/* What is Erectile Dysfunction Section */
.what-is-ed-section {
    padding: 20px 0 40px 0;
    background-color: white;
}

.what-is-ed-box {
    background-color: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    max-width: 1440px;
    margin: 0 auto;
}

.what-is-ed-box .section-title {
    margin-bottom: 20px;
}

.what-is-ed-box p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.what-is-ed-box p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .what-is-ed-section {
        padding: 15px 0 30px 0;
    }
    
    .what-is-ed-box {
        padding: 25px 20px;
        margin: 0 10px;
    }

    .what-is-ed-box .section-title {
        margin-bottom: 15px;
    }
    
    .what-is-ed-box p {
        font-size: 1rem;
        margin-bottom: 12px;
    }
}

/* ED Stats Section */
.ed-stats-container {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.ed-stats-title {
    color: var(--secondary-blue);
    margin-bottom: 15px;
    font-size: 2rem;
    font-weight: 700;
}

.ed-stats-description {
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

.ed-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    /* Removed margin/border as it's now on container */
}

.ed-stat-card {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--background-white);
    border-radius: 16px;
    box-shadow: 0 4px 14px var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.ed-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-medium);
    border-color: var(--primary-blue);
}

.ed-stat-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.big-stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary-blue);
    margin-bottom: 15px;
    display: block;
    font-family: 'Montserrat', sans-serif;
}

.ed-stat-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--secondary-blue);
}

.ed-stat-card p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.5;
}

.ed-stat-card strong {
    color: var(--primary-blue);
    font-weight: 600;
}

@media (max-width: 900px) {
    .ed-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .ed-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Why Does ED Happen Section */
.ed-causes-section {
    padding: 40px 0;
    background-color: var(--background-soft);
}

.ed-causes-box {
    background-color: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    max-width: 1440px;
    margin: 0 auto;
}

.ed-causes-box .section-title {
    margin-bottom: 15px;
}

.ed-causes-box .section-description {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.ed-causes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.ed-causes-column {
    background-color: var(--background-soft);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--border-color);
}

.ed-cause-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 20px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ed-cause-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    transition: transform 0.3s ease;
}

.ed-causes-column:hover .ed-cause-image img {
    transform: scale(1.05);
}

.ed-causes-subtitle {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ed-causes-subtitle i {
    font-size: 1.75rem;
    color: var(--primary-blue);
}

.ed-causes-column p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.ed-causes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ed-causes-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
}

.ed-causes-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.25rem;
}

.ed-causes-list li strong {
    color: var(--secondary-blue);
}

@media (max-width: 900px) {
    .ed-causes-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .ed-causes-section {
        padding: 30px 0;
    }

    .ed-causes-box {
        padding: 30px 20px;
        margin: 0 10px;
    }

    .ed-causes-box .section-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .ed-causes-column {
        padding: 25px 20px;
    }

    .ed-causes-subtitle {
        font-size: 1.25rem;
    }

    .ed-causes-subtitle i {
        font-size: 1.5rem;
    }
}

/* Treatment Options Accordion */
.treatment-options-accordion {
    max-width: 900px;
    margin: 0 auto 50px auto;
}

.treatment-option-item {
    background-color: var(--background-soft);
    border-radius: 16px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.treatment-option-item:hover {
    border-color: var(--primary-blue);
}

.treatment-option-item summary {
    padding: 20px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--secondary-blue);
    list-style: none;
    transition: all 0.3s ease;
    outline: none;
}

.treatment-option-item summary:focus {
    outline: none;
    box-shadow: none;
}

.treatment-option-item summary::-webkit-details-marker {
    display: none;
}

.treatment-option-item summary:hover {
    background-color: var(--light-gray);
}

.treatment-option-item[open] summary {
    background-color: var(--primary-blue);
    color: white;
}

.treatment-option-item[open] summary i:first-child {
    color: white;
}

.treatment-option-item summary i:first-child {
    color: var(--primary-blue);
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.treatment-option-item summary i:last-child {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.treatment-option-item[open] summary i:last-child {
    transform: rotate(180deg);
}

.treatment-option-content {
    padding: 25px 30px;
    background-color: white;
}

.treatment-option-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Penile Implants Subsection */
.penile-implants-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.subsection-title {
    text-align: center;
    color: var(--secondary-blue);
    font-size: 1.75rem;
    margin-bottom: 15px;
}

.subsection-description {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

@media (max-width: 768px) {
    .treatment-options-accordion {
        margin-bottom: 40px;
    }
    
    .treatment-option-item summary {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .treatment-option-item summary i:first-child {
        font-size: 1.25rem;
    }
    
    .treatment-option-content {
        padding: 20px;
    }
    
    .penile-implants-section {
        margin-top: 40px;
        padding-top: 30px;
    }
    
    .subsection-title {
        font-size: 1.5rem;
    }
    
    .subsection-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
}


/* ========================================
   Why Prostate Treatments Can Cause ED Section
   ======================================== */

.why-prostate-ed-section {
    padding: 60px 0;
    background-color: var(--background-soft);
}

.why-prostate-ed-box {
    width: 100%;
}

.why-prostate-ed-box.shadowbox {
    background-color: var(--background-white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.why-prostate-ed-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.why-prostate-ed-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.why-prostate-ed-image img {
    width: 100%;
    height: auto;
    display: block;
}

.why-prostate-ed-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 25px;
}

.why-prostate-ed-subtitle {
    font-size: 1.4rem;
    color: var(--secondary-blue);
    margin-bottom: 15px;
    margin-top: 30px;
}

@media (max-width: 992px) {
    .why-prostate-ed-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .why-prostate-ed-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .why-prostate-ed-section {
        padding: 40px 0;
    }
    
    .why-prostate-ed-box.shadowbox {
        padding: 30px 20px;
        border-radius: 16px;
    }
    
    .why-prostate-ed-content p {
        font-size: 1rem;
    }
    
    .why-prostate-ed-subtitle {
        font-size: 1.25rem;
    }
}


/* ========================================
   Treatment Pathway Section
   ======================================== */

.treatment-pathway-section {
    padding: 30px 0 60px 0;
    background-color: var(--background-soft);
}

.treatment-pathway-box {
    background-color: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.treatment-pathway-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    margin-top: 40px;
}

/* Connecting line between cards */
.treatment-pathway-grid::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    z-index: 0;
    border-radius: 2px;
}

.treatment-pathway-card {
    background-color: var(--background-soft);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

.treatment-pathway-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(18, 79, 144, 0.15);
    border-color: var(--primary-blue);
}

.pathway-step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(18, 79, 144, 0.3);
    z-index: 2;
}

.pathway-icon {
    width: 80px;
    height: 80px;
    margin: 15px auto 20px auto;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(18, 79, 144, 0.25);
    transition: all 0.3s ease;
}

.treatment-pathway-card:hover .pathway-icon {
    transform: scale(1.1);
}

.pathway-icon i {
    font-size: 2rem;
    color: white;
}

.treatment-pathway-card h3 {
    color: var(--secondary-blue);
    font-size: 1.15rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.treatment-pathway-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* Highlight card (Penile Implants) */
.pathway-card-highlight {
    background: linear-gradient(135deg, rgba(18, 79, 144, 0.08) 0%, rgba(35, 47, 88, 0.08) 100%);
    border: 2px solid var(--primary-blue);
}

.pathway-card-highlight .pathway-step-number {
    background: linear-gradient(135deg, var(--accent-red) 0%, #a00f24 100%);
    box-shadow: 0 4px 15px rgba(206, 18, 45, 0.3);
}

.pathway-card-highlight .pathway-icon {
    background: linear-gradient(135deg, var(--accent-red) 0%, #a00f24 100%);
    box-shadow: 0 8px 25px rgba(206, 18, 45, 0.25);
}

.pathway-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pathway-learn-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(18, 79, 144, 0.3);
    color: white;
}

.pathway-learn-more i {
    font-size: 0.8rem;
    animation: bounce-down 1.5s ease-in-out infinite;
}

@keyframes bounce-down {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .treatment-pathway-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .treatment-pathway-grid::before {
        display: none;
    }
    
    .treatment-pathway-box {
        padding: 40px 30px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .treatment-pathway-section {
        padding: 40px 0;
    }
    
    .treatment-pathway-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .treatment-pathway-card {
        padding: 30px 25px;
        min-height: auto;
    }
    
    .pathway-icon {
        width: 70px;
        height: 70px;
    }
    
    .pathway-icon i {
        font-size: 1.75rem;
    }
    
    .treatment-pathway-card h3 {
        font-size: 1.1rem;
    }
    
    .treatment-pathway-box {
        padding: 30px 20px;
        border-radius: 16px;
    }
}


/* ========================================
   Penile Implants Hero Section
   ======================================== */

.penile-implants-hero-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
}

.penile-implants-hero-box {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 50px;
    backdrop-filter: blur(10px);
}

.penile-implants-hero-section .section-title {
    color: white;
    text-align: center;
}

.penile-implants-hero-section .section-description {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.advantage-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.advantage-card:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-icon i {
    font-size: 1.75rem;
    color: white;
}

.advantage-card h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.advantage-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .penile-implants-hero-section {
        padding: 40px 0;
    }
    
    .penile-implants-hero-box {
        padding: 30px 20px;
    }
    
    .penile-implants-hero-section .section-description {
        font-size: 1rem;
        margin-bottom: 35px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .advantage-card {
        padding: 25px 20px;
    }
    
    .advantage-icon {
        width: 60px;
        height: 60px;
    }
    
    .advantage-icon i {
        font-size: 1.5rem;
    }
}


/* ========================================
   Treatment Journey Section
   ======================================== */

.treatment-journey-section {
    padding: 30px 0 60px 0;
    background-color: var(--background-soft);
}

.treatment-journey-box {
    background-color: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.treatment-journey-section .section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.journey-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

/* Vertical line */
.journey-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 30px;
    bottom: 30px;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 2px;
}

.journey-step {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
    position: relative;
}

.journey-step:last-child {
    margin-bottom: 0;
}

.journey-step-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(18, 79, 144, 0.3);
    z-index: 1;
}

.journey-step-content {
    flex: 1;
}

.journey-accordion {
    background-color: var(--background-soft);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.journey-accordion[open] {
    border-color: var(--primary-blue);
    box-shadow: 0 5px 20px rgba(18, 79, 144, 0.1);
}

.journey-accordion summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    cursor: pointer;
    list-style: none;
    transition: all 0.3s ease;
}

.journey-accordion summary::-webkit-details-marker {
    display: none;
}

.journey-accordion summary:hover {
    background-color: rgba(18, 79, 144, 0.05);
}

.journey-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.journey-header i {
    font-size: 1.25rem;
    color: var(--primary-blue);
    width: 30px;
    text-align: center;
}

.journey-header span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-blue);
}

.journey-chevron {
    color: var(--primary-blue);
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.journey-accordion[open] .journey-chevron {
    transform: rotate(180deg);
}

.journey-body {
    padding: 0 25px 25px 25px;
}

.journey-body p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    padding-left: 45px;
}

@media (max-width: 768px) {
    .treatment-journey-section {
        padding: 40px 0;
    }
    
    .treatment-journey-box {
        padding: 30px 20px;
    }
    
    .journey-timeline::before {
        left: 19px;
    }
    
    .journey-step {
        gap: 15px;
    }
    
    .journey-step-number {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1rem;
    }
    
    .journey-accordion summary {
        padding: 15px 18px;
    }
    
    .journey-header i {
        font-size: 1.1rem;
        width: 25px;
    }
    
    .journey-header span {
        font-size: 1rem;
    }
    
    .journey-body {
        padding: 0 18px 20px 18px;
    }
    
    .journey-body p {
        padding-left: 40px;
        font-size: 0.95rem;
    }
}

/* Why Diabetes Causes ED Section */
.why-diabetes-ed-section {
    padding: 60px 0;
    background-color: var(--background-soft);
}

.why-diabetes-ed-box {
    background-color: white;
    border-radius: 24px;
    padding: 50px;
}

.why-diabetes-ed-box .section-title {
    margin-bottom: 15px;
}

.why-diabetes-ed-box .section-subtitle {
    font-size: 1.25rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 20px;
}

.why-diabetes-ed-box .section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.diabetes-ed-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.diabetes-ed-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 35px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    box-shadow: 0 4px 20px rgba(18, 79, 144, 0.08);
    border: 1px solid rgba(18, 79, 144, 0.08);
    transition: all 0.3s ease;
}

.diabetes-ed-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(18, 79, 144, 0.15);
    border-color: var(--light-blue);
}

.diabetes-ed-card-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    box-shadow: 0 8px 25px rgba(18, 79, 144, 0.3);
    transition: all 0.3s ease;
}

.diabetes-ed-card:hover .diabetes-ed-card-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(18, 79, 144, 0.4);
}

.diabetes-ed-card-content h3 {
    font-size: 1.25rem;
    color: var(--secondary-blue);
    margin-bottom: 12px;
    font-weight: 600;
}

.diabetes-ed-card-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .diabetes-ed-cards {
        grid-template-columns: 1fr;
    }
    
    .why-diabetes-ed-box {
        padding: 35px 25px;
    }
}

@media (max-width: 768px) {
    .why-diabetes-ed-section {
        padding: 40px 0;
    }
    
    .why-diabetes-ed-box {
        padding: 30px 20px;
    }
    
    .diabetes-ed-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 25px;
    }
    
    .diabetes-ed-card-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 1.5rem;
    }
    
    .why-diabetes-ed-box .section-intro {
        font-size: 1rem;
    }
}


/* Why Oral Medications Often Don't Work Section */
.why-pills-fail-section {
    padding: 60px 0;
    background-color: white;
}

.why-pills-fail-box {
    background-color: var(--background-soft);
    border-radius: 24px;
    padding: 50px;
}

.why-pills-fail-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.why-pills-fail-icon {
    position: relative;
    width: 100px;
    height: 100px;
    min-width: 100px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
}

.why-pills-fail-icon .icon-overlay {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 36px;
    height: 36px;
    background: var(--secondary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.why-pills-fail-text {
    flex: 1;
}

.why-pills-fail-text .section-title-left {
    text-align: left;
    margin-bottom: 20px;
    color: var(--secondary-blue);
    font-size: 2rem;
    font-weight: 600;
}

.why-pills-fail-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.why-pills-fail-text h3 {
    color: var(--secondary-blue);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.why-pills-fail-text p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .why-pills-fail-section {
        padding: 40px 0;
    }
    
    .why-pills-fail-box {
        padding: 30px 20px;
    }
    
    .why-pills-fail-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
    }
    
    .why-pills-fail-icon {
        width: 80px;
        height: 80px;
        min-width: 80px;
        font-size: 2rem;
    }
    
    .why-pills-fail-icon .icon-overlay {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
    }
    
    .why-pills-fail-text .section-title-left {
        text-align: center;
        font-size: 1.5rem;
    }
    
    .why-pills-fail-text h3 {
        text-align: center;
    }
    
    .why-pills-fail-text p {
        font-size: 1rem;
    }
}


/* Penile Implants Info Cards - Diabetes Page */
.implant-info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.implant-info-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(18, 79, 144, 0.08);
    border: 1px solid rgba(18, 79, 144, 0.08);
    transition: all 0.3s ease;
}

.implant-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(18, 79, 144, 0.15);
    border-color: var(--light-blue);
}

.implant-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(18, 79, 144, 0.3);
    transition: all 0.3s ease;
}

.implant-info-card:hover .implant-info-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(18, 79, 144, 0.4);
}

.implant-info-card h4 {
    font-size: 1.25rem;
    color: var(--secondary-blue);
    margin-bottom: 15px;
    font-weight: 600;
}

.implant-info-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .implant-info-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .implant-info-card {
        padding: 25px;
        text-align: center;
    }
    
    .implant-info-icon {
        margin: 0 auto 20px;
    }
}
