/* Base styles */
:root {
    --primary-color: #1a2b3c;
    --secondary-color: #2d3e50;
    --accent-color: #2563eb;
    --accent-gradient: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    --background-color: #f8fafc;
    --text-color: #334155;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --neutral-color: #64748b;
    --shadow-sm: 0 2px 4px 0 rgb(37 99 235 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(37 99 235 / 0.15), 0 2px 4px -2px rgb(37 99 235 / 0.15);
    --shadow-lg: 0 10px 15px -3px rgb(37 99 235 / 0.15), 0 4px 6px -4px rgb(37 99 235 / 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
}

/* Header styles */
header {
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 2rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-main {
    text-align: left;
}

.header-nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link.active {
    color: var(--accent-color);
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-gradient);
}

h1 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.01em;
}

.logo-text {
    color: var(--accent-color);
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-right: 0.125rem;
}

.logo-accent {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.subtitle {
    color: var(--text-color);
    margin: 1rem 0 0;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5;
}

.last-updated-header {
    display: inline-flex;
    align-items: center;
    color: var(--neutral-color);
    margin: 1rem 0 0;
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
    background: var(--background-color);
    border-radius: 1rem;
}

/* Submit button styles */
.submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background: var(--accent-gradient);
    color: white;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 140px;
    text-align: center;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px -4px rgb(37 99 235 / 0.3);
}

/* Main content styles */
main {
    background-color: var(--background-color);
    position: relative;
    z-index: 1;
    padding-top: 3rem;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

/* Table styles */
.table-container {
    background: linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
    border-radius: 16px;
    box-shadow: var(--shadow-lg),
                0 0 0 1px rgba(37, 99, 235, 0.05);
    overflow: hidden;
    border: none;
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.table-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgb(37 99 235 / 0.15),
                0 8px 10px -6px rgb(37 99 235 / 0.15);
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    text-align: left;
}

th, td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

th {
    background: linear-gradient(to bottom, white, var(--background-color));
    color: var(--primary-color);
    font-weight: 600;
    position: sticky;
    top: 0;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.875rem 1rem;
    border-bottom: 2px solid var(--border-color);
    z-index: 10;
    text-align: center;
}

th:first-child,
th:nth-child(2) {
    text-align: left;
}

tr {
    transition: all 0.3s ease;
    background: linear-gradient(to right, transparent 0%, transparent 100%);
}

tr:hover {
    background: linear-gradient(to right, rgba(37, 99, 235, 0.02) 0%, rgba(37, 99, 235, 0.05) 100%);
}

/* Product styles */
.product-logo-container {
    width: 130px;
    height: 52px;
    border-radius: 8px;
    background: transparent;
    padding: 0.75rem;
    transition: all 0.3s ease;
    margin: 0 auto;
}

tr:hover .product-logo-container {
    transform: translateY(-2px) scale(1.02);
}

.product-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(1.02);
}

/* Description styles */
td {
    vertical-align: middle;
    font-size: 0.9375rem;
    line-height: 1.5;
}

td:nth-child(2) {
    padding-right: 2rem;
}

.product-name {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    display: inline-block;
    margin-bottom: 0.25rem;
    position: relative;
    transition: all 0.3s ease;
}

.product-name:hover {
    color: var(--accent-color);
    transform: translateX(2px);
}

.product-name::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-name:hover::after {
    transform: scaleX(1);
}

/* Resource styles */
.resource-title {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    display: block;
    margin-bottom: 0.25rem;
}

.resource-title:hover {
    text-decoration: underline;
}

td .resource-title {
    font-size: 1rem;
    line-height: 1.4;
}

/* View product button */
.view-product, .product-details-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.5rem;
    background: linear-gradient(to bottom, #ffffff, #f8fafc);
    color: var(--accent-color);
    border: 1.5px solid var(--accent-color);
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 90px;
    max-width: 120px;
    text-align: center;
    margin: 0.5rem auto;
    box-shadow: var(--shadow-sm);
}

.view-product:hover, 
.product-details-link:hover {
    background: var(--accent-gradient);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.product-details-link.disabled {
    background: #f1f5f9;
    border-color: #e2e8f0;
    color: #94a3b8;
    cursor: not-allowed;
    pointer-events: none;
}

.product-details-link.disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Feature indicator styles */
.feature-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin: 0 auto;
}

.feature-yes {
    color: var(--success-color);
}

.feature-no {
    color: var(--neutral-color);
}

.feature-indicator svg {
    width: 16px;
    height: 16px;
}

/* Footer styles */
footer {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(to top, #ffffff 0%, #f0f5ff 100%);
    border-top: 1px solid rgba(37, 99, 235, 0.1);
    margin-top: 3rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-info {
    text-align: left;
    color: var(--neutral-color);
}

.footer-cta {
    text-align: right;
    margin-top: 1rem;
}

.footer-cta p {
    margin: 0 0 1rem;
    color: var(--secondary-color);
    font-size: 1.125rem;
}

.footer-cta .submit-button {
    margin: 0;
    display: inline-flex;
}

footer a {
    color: var(--accent-color);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Hero section styles */
.hero-section {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
    margin-top: 4rem;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 1rem;
        text-align: center;
        margin-top: 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* Review section styles */
.review-section {
    background: #fff;
    border-radius: 16px;
    padding: 1.25rem;
    margin: 0.5rem 0;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.review-meta {
    margin-bottom: 0.75rem;
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: none;
    padding-bottom: 0;
}

.review-date {
    color: var(--neutral-color);
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
    background: var(--background-color);
    border-radius: 1rem;
}

.editor-badge {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a2b3c;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    box-shadow: var(--shadow-sm);
}

.editor-note {
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--text-color);
    background: linear-gradient(to right, #f8fafc, white);
    border-left: 3px solid var(--accent-color);
    padding: 0.75rem;
    margin: 0.5rem 0;
    border-radius: 0 8px 8px 0;
}

.review-analysis {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.analysis-section {
    background: linear-gradient(to right, #f8fafc, white);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.analysis-section:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.analysis-section h4 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    padding-bottom: 0.35rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.analysis-section li {
    font-size: 0.85rem;
    margin-bottom: 0.35rem;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.analysis-section li:last-child {
    margin-bottom: 0;
}

.check, .cross {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 0.7rem;
    margin-top: 1px;
}

.check {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.cross {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.pros {
    border-left: 3px solid var(--success-color);
    position: relative;
}

.pros h4::before {
    content: "What We Liked";
    position: absolute;
    top: -0.6rem;
    left: 0.75rem;
    background: var(--success-color);
    color: white;
    padding: 0.15rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
}

.cons {
    border-left: 3px solid #ef4444;
    position: relative;
}

.cons h4::before {
    content: "Cons";
    position: absolute;
    top: -0.6rem;
    left: 0.75rem;
    background: #ef4444;
    color: white;
    padding: 0.15rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
}

.product-description {
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.product-description .product-tagline {
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--text-color);
    margin: 0;
}

@media (max-width: 768px) {
    .review-section {
        padding: 1rem;
    }
    
    .analysis-section {
        padding: 0.75rem;
    }
    
    .editor-note {
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
    }
}

/* Product page styles */
.product-page {
    padding-top: 4rem;
}

.product-hero {
    padding: 2rem 0;
    background: white;
    border-bottom: 1px solid var(--border-color);
}

.product-hero-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

.product-logo-large {
    width: 200px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-hero-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-tagline {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.product-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    background: var(--accent-gradient);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 160px;
    box-shadow: var(--shadow-md);
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px -4px rgb(37 99 235 / 0.3);
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    background: white;
    color: var(--accent-color);
    border: 1.5px solid var(--accent-color);
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 160px;
}

.secondary-button:hover {
    background: var(--accent-gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.product-content {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.product-content section {
    margin-bottom: 4rem;
}

.product-content h2 {
    font-size: 1.875rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.product-description {
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.product-description .product-tagline {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-color);
    margin: 0;
}

@media (max-width: 768px) {
    .product-description {
        margin-top: 1.5rem;
        padding: 1rem;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgb(37 99 235 / 0.15);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-color);
    line-height: 1.6;
}

.tech-details {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.tech-details h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.tech-details h3:first-child {
    margin-top: 0;
}

.tech-details p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.screenshot-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Remove main-screenshot styles since we don't need them anymore */
.main-screenshot {
    display: none;
}

.screenshot-thumbnails {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 0 auto;
    max-width: 800px;
    padding: 0;
}

.screenshot-thumb {
    position: relative;
    cursor: pointer;
    transition: transform 0.2s;
}

.screenshot-thumb:hover {
    transform: scale(1.02);
}

.screenshot-thumb img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 16/9;
    object-fit: cover;
}

.screenshot-thumb p {
    margin-top: 0.75rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .screenshot-thumbnails {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .screenshot-thumbnails {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

.product-logo-section {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.product-logo-section .product-logo-large {
    width: 200px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-logo-section .product-meta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.product-logo-section .meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.product-logo-section .meta-label {
    font-size: 0.75rem;
    color: var(--neutral-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-logo-section .meta-value {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 500;
}

.product-logo-section .product-description {
    padding: 0;
    margin: 0;
    background: none;
    box-shadow: none;
}

.product-logo-section .product-description .product-tagline {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-color);
    margin: 0;
}

.product-logo-section .primary-button {
    margin: 0;
}

@media (max-width: 768px) {
    .product-logo-section {
        padding: 1.5rem;
    }
    
    .product-logo-section .product-logo-large {
        width: 160px;
        height: 64px;
    }
}

/* Magazine Style Layout */
.hero-banner {
    position: relative;
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    margin-bottom: 2rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.7));
    padding: 2rem;
    display: flex;
    align-items: flex-end;
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    color: white;
}

.product-badge {
    position: absolute;
    top: -100px;
    left: 2rem;
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.product-badge img {
    height: 80px;
    width: auto;
}

.rating-badge {
    position: absolute;
    top: -80px;
    right: 2rem;
    background: var(--accent-color);
    color: white;
    padding: 1rem;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.rating-score {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
}

.rating-label {
    font-size: 0.8rem;
    text-align: center;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem 0;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    align-items: start;
}

.main-content {
    min-width: 0;
}

.product-header {
    margin-bottom: 2rem;
}

.product-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1rem 0;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.meta-label {
    font-size: 0.75rem;
    color: var(--neutral-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.meta-value {
    font-size: 0.875rem;
    color: var(--text-color);
    font-weight: 500;
}

.editor-review {
    background: linear-gradient(135deg, #ffffff 0%, #fffaf0 100%);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(218, 165, 32, 0.2);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: none;
    padding-bottom: 0;
}

.editor-badge {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a2b3c;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
}

.editor-quote {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #2d3748;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.05) 0%, rgba(218, 165, 32, 0.1) 100%);
    padding: 2rem;
    margin: 1.5rem 0 2rem 0;
    border-radius: 12px;
    position: relative;
    border: 1px solid rgba(218, 165, 32, 0.15);
}

.editor-quote::before {
    content: '"';
    position: absolute;
    left: 1rem;
    top: 1rem;
    font-size: 4rem;
    color: goldenrod;
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.review-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.review-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.review-card.pros {
    border-top: 3px solid var(--success-color);
}

.review-card.cons {
    border-top: 3px solid #ef4444;
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.review-card-header .card-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1rem;
}

.review-card.pros .card-icon {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.review-card.cons .card-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.review-card-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.review-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.review-card li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-color);
}

.review-card li:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}

.review-card li .item-icon {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.review-card.pros li .item-icon {
    color: var(--success-color);
}

.review-card.cons li .item-icon {
    color: #ef4444;
}

@media (max-width: 768px) {
    .review-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.grid-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
}

.grid-item img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.grid-item img:hover {
    transform: scale(1.02);
}

.grid-item p {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--neutral-color);
}

.quick-nav {
    position: sticky;
    top: 2rem;
    align-self: start;
}

.nav-wrapper {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
}

.section-nav ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.section-nav a {
    display: block;
    padding: 0.5rem 0;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.2s;
}

.section-nav a:hover {
    color: var(--accent-color);
}

.key-features {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.key-features ul {
    list-style: none;
    padding: 0;
}

.key-features li {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .quick-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        height: 40vh;
    }
    
    .product-badge {
        left: 1rem;
        top: -60px;
    }
    
    .product-badge img {
        height: 60px;
    }
    
    .rating-badge {
        right: 1rem;
        top: -50px;
        width: 80px;
        height: 80px;
    }
    
    .review-cards {
        grid-template-columns: 1fr;
    }
    
    .content-wrapper {
        padding: 0 1rem;
    }
}

.product-logo-section .product-logo-large {
    width: 200px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-logo-section .product-thumbnail {
    margin: 0.5rem auto 0;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease;
    cursor: zoom-in;
}

.product-logo-section .product-thumbnail:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.product-logo-section .thumbnail-preview {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Submit Form Page Styles */
.hero-section {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
    margin-top: 4rem;
}

.hero-title {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.submit-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.8rem;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #009ffd;
    box-shadow: 0 0 0 3px rgba(0, 159, 253, 0.1);
    outline: none;
    background: white;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-form-button {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    color: var(--accent-color);
    padding: 1rem 2rem;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: inline-block;
    text-decoration: none;
}

.submit-form-button:hover {
    background: var(--accent-gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.thank-you-message {
    text-align: center;
    padding: 2rem;
}

.thank-you-message h2 {
    color: #2a2a72;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.thank-you-message ul {
    text-align: left;
    max-width: 400px;
    margin: 1.5rem auto;
    padding-left: 1.5rem;
}

.thank-you-message li {
    margin-bottom: 0.8rem;
    color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 1rem;
        margin-top: 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .form-container {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .submit-form-button {
        width: 100%;
    }
}

/* Mobile-first media queries */
@media (max-width: 768px) {
    /* Header adjustments */
    header {
        position: relative;
        padding: 0.5rem 1rem;
    }
    
    .header-content {
        padding: 0;
    }
    
    /* Hero section adjustments */
    .hero-section {
        padding: 2rem 1rem;
        text-align: center;
        margin-top: 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    /* Table adjustments */
    .table-container {
        padding: 0.5rem;
        margin: 1rem 0;
    }
    
    table {
        font-size: 0.9rem;
    }
    
    /* Hide table headers on mobile */
    thead {
        display: none;
    }
    
    /* Stack table cells for better readability */
    table, tbody, tr {
        display: block;
    }
    
    tr {
        margin-bottom: 1.5rem;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        padding: 0.5rem;
    }
    
    td {
        display: block;
        position: relative;
        padding: 0.5rem;
        text-align: center !important;
        border: none;
    }
    
    /* Remove data-label display */
    td:before {
        display: none;
        content: none;
    }
    
    /* Product logo adjustments */
    .product-logo-container {
        width: 140px;
        height: 140px;
        margin: 0 auto;
        padding: 1rem;
    }
    
    .product-logo {
        max-width: 120px;
        max-height: 120px;
    }
    
    /* Button and link adjustments */
    .view-product, .product-details-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
    
    /* Footer adjustments */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .footer-cta {
        width: 100%;
    }
    
    .submit-button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    /* Further reduce sizes for very small screens */
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    /* Stack table cells for better readability */
    table, thead, tbody, th, td, tr {
        display: block;
    }
    
    /* Completely hide table headers */
    thead {
        display: none;
    }
    
    tr {
        margin-bottom: 1.5rem;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        padding: 0.5rem;
    }
    
    td {
        position: relative;
        padding: 0.5rem;
        text-align: center !important;
        border: none;
    }
    
    /* Remove data-label display */
    td:before {
        display: none;
        content: none;
    }
    
    /* Adjust product logos for stacked layout */
    .product-logo-container {
        width: 160px;
        height: 160px;
        margin: 0 auto 1rem;
        padding: 1rem;
    }
    
    .product-logo {
        max-width: 140px;
        max-height: 140px;
    }
    
    /* Center all buttons in stacked layout */
    .view-product, .product-details-link {
        display: block;
        width: 100%;
        max-width: 200px;
        margin: 0.5rem auto;
        text-align: center;
    }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-section {
        padding: 3rem 2rem;
    }
    
    .table-container {
        padding: 1rem;
    }
    
    td:nth-child(2) {
        min-width: 300px;
    }
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 2rem;
    box-sizing: border-box;
    overflow: auto;
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal img {
    max-width: 90%;
    max-height: 90vh;
    margin: auto;
    display: block;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 2rem;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.nav-button.prev {
    left: 2rem;
}

.nav-button.next {
    right: 2rem;
}

@media (max-width: 768px) {
    .modal {
        padding: 1rem;
    }
    
    .nav-button {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.2rem;
    }
    
    .nav-button.prev {
        left: 1rem;
    }
    
    .nav-button.next {
        right: 1rem;
    }
}

/* Compact Hero Section Styles */
.hero-section-compact {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 5rem 2rem 3rem;
    text-align: center;
    margin-top: 3.5rem;
}

.hero-content-compact {
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--accent-color);
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
}

.badge-icon {
    font-size: 1rem;
}

.hero-title-compact {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0 0 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-subtitle-compact {
    font-size: 1.125rem;
    color: var(--text-color);
    margin: 0 0 2rem;
    line-height: 1.6;
}

.hero-stats-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--neutral-color);
}

.stat-compact {
    display: flex;
    align-items: center;
}

.stat-compact strong {
    color: var(--accent-color);
    font-weight: 600;
}

.stat-divider-compact {
    color: var(--border-color);
}

/* Leaderboard Container Styles */
.leaderboard-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.leaderboard-header {
    text-align: center;
    margin-bottom: 3rem;
}

.leaderboard-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 0.5rem;
}

.leaderboard-header p {
    font-size: 1.125rem;
    color: var(--neutral-color);
    margin: 0;
}

.leaderboard-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Leaderboard Card Styles */
.leaderboard-card {
    position: relative;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.leaderboard-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px -5px rgb(37 99 235 / 0.15),
                0 4px 6px -4px rgb(37 99 235 / 0.15);
}

.rank-badge {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    background: var(--neutral-color);
    color: white;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.rank-badge.rank-1 {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a2b3c;
    box-shadow: 0 4px 6px rgba(255, 215, 0, 0.4);
}

.rank-badge.rank-2 {
    background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 100%);
    color: #1a2b3c;
    box-shadow: 0 4px 6px rgba(192, 192, 192, 0.4);
}

.rank-badge.rank-3 {
    background: linear-gradient(135deg, #cd7f32 0%, #e89b65 100%);
    color: white;
    box-shadow: 0 4px 6px rgba(205, 127, 50, 0.4);
}

.card-content {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    gap: 1.5rem;
    padding: 1.25rem 1.5rem;
    align-items: center;
}

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

.card-logo img {
    max-width: 120px;
    max-height: 50px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.leaderboard-card:hover .card-logo img {
    transform: scale(1.05);
}

.card-info {
    flex: 1;
}

.card-title-col {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.card-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.card-title a:hover {
    color: var(--accent-color);
}

.card-description {
    color: var(--text-color);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.card-description-col {
    display: flex;
    align-items: center;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: linear-gradient(135deg, #e0e7ff 0%, #dbeafe 100%);
    color: var(--accent-color);
    border-radius: 1rem;
    font-size: 0.8125rem;
    font-weight: 500;
}

.card-actions {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    min-width: 280px;
}

.btn-review, .btn-visit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8125rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.btn-review {
    background: var(--accent-gradient);
    color: white;
    border: none;
}

.btn-review:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 12px -2px rgb(37 99 235 / 0.3);
}

.btn-review.disabled {
    background: linear-gradient(to bottom, #f8fafc, #e2e8f0);
    color: var(--neutral-color);
    cursor: not-allowed;
    pointer-events: none;
}

.btn-visit {
    background: white;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-visit:hover {
    background: var(--accent-gradient);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 12px -2px rgb(37 99 235 / 0.3);
}

/* Responsive Leaderboard Styles */
@media (max-width: 1024px) {
    .card-content {
        grid-template-columns: 120px 1fr auto;
        gap: 1.5rem;
        padding: 1.75rem;
        padding-left: 4.5rem;
    }
    
    .card-logo img {
        max-width: 120px;
        max-height: 60px;
    }
}

@media (max-width: 768px) {
    .hero-section-compact {
        padding: 4rem 1rem 2rem;
    }
    
    .hero-title-compact {
        font-size: 2rem;
    }
    
    .hero-subtitle-compact {
        font-size: 1rem;
    }
    
    .hero-stats-compact {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .stat-divider-compact {
        display: none;
    }
    
    .rank-badge {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 0.875rem;
        top: 1rem;
        left: 1rem;
    }
    
    .card-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 4rem 1.5rem 1.5rem;
    }
    
    .card-logo {
        order: -1;
    }
    
    .card-logo img {
        max-width: 160px;
        max-height: 80px;
    }
    
    .card-title {
        font-size: 1.25rem;
        text-align: center;
    }
    
    .card-description {
        font-size: 0.875rem;
        text-align: center;
    }
    
    .card-tags {
        justify-content: center;
    }
    
    .card-actions {
        width: 100%;
        min-width: unset;
    }
    
    .btn-review, .btn-visit {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title-compact {
        font-size: 1.75rem;
    }
    
    .leaderboard-list {
        gap: 1rem;
    }
    
    .card-content {
        padding: 3.5rem 1rem 1rem;
    }
}

/* Info Sections Styles */
.info-sections {
    max-width: 1200px;
    margin: 4rem auto 2rem;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.info-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 20px -5px rgb(37 99 235 / 0.15);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 1rem;
}

.info-card p {
    color: var(--text-color);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0 0 1.5rem;
}

.info-link {
    display: inline-flex;
    align-items: center;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.info-link:hover {
    transform: translateX(4px);
}

/* Content Page Styles */
.content-page {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.content-section {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.content-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 1.5rem;
}

.content-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

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

.content-section a {
    color: var(--accent-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.content-section a:hover {
    border-bottom-color: var(--accent-color);
}

.content-section ol, .content-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.content-section li {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.criteria-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--accent-color);
}

.criteria-card h3 {
    margin: 0 0 0.75rem;
    color: var(--accent-color);
}

.criteria-card p {
    margin: 0;
}

.review-process {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 8px;
    padding: 2rem 2rem 2rem 3rem;
}

/* About Page Styles */
.about-profile {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.profile-image {
    flex-shrink: 0;
}

.profile-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    border: 4px solid white;
}

.profile-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 0.5rem;
}

.profile-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--accent-color);
    margin: 0 0 0.25rem;
}

.profile-location {
    font-size: 0.9375rem;
    color: var(--neutral-color);
    margin: 0;
}

.approach-list {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 8px;
    padding: 1.5rem 1.5rem 1.5rem 3rem;
}

.approach-list li {
    margin-bottom: 1rem;
}

/* Footer Styles */
.footer-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header-nav {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.875rem;
    }
    
    .info-sections {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 3rem auto 1.5rem;
    }
    
    .content-section {
        padding: 1.5rem;
    }
    
    .about-profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    
    .profile-image img {
        width: 150px;
        height: 150px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .header-nav {
        width: 100%;
        justify-content: center;
    }
    
    .content-section {
        padding: 1.25rem;
    }
    
    .criteria-card, .review-process, .approach-list {
        padding: 1.25rem;
    }
} 