:root {
    --primary-color: #2563eb;
    --primary-dark: #1dd8a0;
    --secondary-color: #3b82f6;
    --main-color: #347ce7;
    --alt-color: #31c2af;
    --social-links: #f8fafc;
    --accent-color: #60a5fa;
    --background-color: #f8fafc;
    --text-color: #1e293b;
    --card-bg: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

body {
    margin: 0;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

* {box-sizing: border-box;}

.interviews-section {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 4rem;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--main-color);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-color);
    margin: 0;
}

.hero-image {
    flex: 1;
    max-width: 500px;
}

.hero-image img {
    width: 100%;
    height: auto;
    transition: transform var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.hero-image img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.hero-image img:hover {
    transform: scale(1.02);
}

.interviews-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.interview-card {
    flex: 1;
    min-width: calc(50% - 1rem); /* Two cards per row */
    max-width: calc(50% - 1rem);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.interview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(37, 99, 235, 0.03), transparent);
    transform: translateX(-100%);
    transition: transform var(--transition-normal);
}

.interview-card:hover::before {
    transform: translateX(100%);
}

.interview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.interview-header {
    margin-bottom: 0.5rem;
}

.interview-header h2 {
    font-size: 1.3rem;
    color: var(--main-color);
    margin: 0;
    font-weight: 600;
}

.interview-date {
    color: var(--text-color);
    font-size: 0.9rem;
    opacity: 0.8;
}

.interview-role {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    font-size: 1.1rem;
}

.role-icon {
    font-size: 1.5rem;
}

.content-section {
    margin-bottom: 1rem;
}

.content-section:last-child {
    margin-bottom: 0;
}

.content-section h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--main-color);
    font-weight: 600;
}

.content-section p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    color: var(--text-color);
}

.insights-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.insights-list li {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
    padding-left: 1.2rem;
    position: relative;
    color: var(--text-color);
}

.insights-list li::before {
    content: "•";
    color: var(--alt-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Print Styles Enhancement */
@media print {
    .back-to-top,
    .header,
    .scroll-progress {
        display: none;
    }

    .interview-card {
        break-inside: avoid;
        page-break-inside: avoid;
        border: 1px solid #ddd;
    }

    .hero-container {
        break-inside: avoid;
    }

    .hero-image img {
        max-width: 300px;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--card-bg);
    padding: 1rem 2rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform var(--transition-normal);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 800px;
}

.cookie-icon {
    font-size: 2rem;
}

.cookie-text {
    font-size: 0.9rem;
    color: var(--text-color);
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all var(--transition-normal);
}

.cookie-accept {
    background: var(--primary-color);
    color: white;
}

.cookie-accept:hover {
    background: var(--primary-dark);
}

.cookie-decline {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.cookie-decline:hover {
    background: rgba(37, 99, 235, 0.1);
}

/* Enhanced Mobile Navigation */
@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .interview-card {
        min-width: 100%;
        max-width: 100%;
    }
}