/* ============================================
   PÁGINAS INFORMATIVAS
   Para: proyecto, especificaciones,
   política de privacidad
   ============================================ */

/* ---- BODY VARIANTS ---- */

/* Fondo azul (especificaciones, privacidad) */
body.info-blue {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #007EBC;
    min-height: 100vh;
    padding: 40px 20px;
    color: #333;
}

/* Fondo claro (proyecto) */
body.info-light {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
    min-height: 100vh;
    overflow-y: auto !important;
    height: auto !important;
}

/* ---- COMPARTIDO ---- */

.section {
    background: white;
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0077B5;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 30px;
    transition: transform 0.2s;
}

.back-btn:hover {
    transform: translateX(-5px);
}

.back-link {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    background-color: white;
    color: #007EBC;
    text-decoration: none;
    border-radius: 25px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    font-weight: 600;
}

.back-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #666;
}

/* ---- ESPECIFICACIONES ---- */

.container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 50px;
}

.container h1 {
    text-align: center;
    color: #007EBC;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.container h2 {
    color: #007EBC;
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #007EBC;
}

.container p {
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.container ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

.container li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.browser-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.browser-item {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
}

.browser-item.supported {
    border-left: 4px solid #28a745;
}

.browser-item.not-supported {
    border-left: 4px solid #dc3545;
}

.warning-box {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.warning-box h3 {
    color: #856404;
    margin-bottom: 10px;
}

.info-box {
    background: #d1ecf1;
    border: 1px solid #17a2b8;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.info-box h3 {
    color: #0c5460;
    margin-bottom: 10px;
}

.requirements-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.requirements-table th,
.requirements-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.requirements-table th {
    background: #007EBC;
    color: white;
}

.requirements-table tr:hover {
    background: #f5f5f5;
}

/* ---- PROYECTO ---- */

.project-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.project-header {
    text-align: center;
    margin-bottom: 50px;
}

.project-header h1 {
    color: #0077B5;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.project-header p {
    color: #666;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.section h2 {
    color: #0077B5;
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section h2 i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0077B5 0%, #00A0DC 100%);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

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

.highlight-box {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 100%);
    border-left: 4px solid #0077B5;
    padding: 20px 25px;
    border-radius: 0 12px 12px 0;
    margin: 25px 0;
}

.highlight-box p {
    color: #0077B5;
    font-weight: 500;
    margin: 0;
}

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

.benefit-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-card h3 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-card h3 i {
    color: #0077B5;
    font-size: 1.3rem;
}

.benefit-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.concept-box {
    background: linear-gradient(135deg, #0077B5 0%, #00A0DC 100%);
    color: white;
    border-radius: 16px;
    padding: 35px;
    margin: 30px 0;
    text-align: center;
}

.concept-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.concept-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stats-row .stat-item {
    text-align: center;
}

.stats-row .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}

.stats-row .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
}

.footer-cta {
    text-align: center;
    padding: 40px 20px;
}

.footer-cta h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0077B5 0%, #005885 100%);
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 119, 181, 0.4);
}

/* ---- CENTRO DE AYUDA ---- */

.help-list {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.help-list li {
    padding: 5px 0;
    color: #555;
    font-size: 0.95rem;
}

.help-list li::before {
    content: "→";
    color: #0077B5;
    font-weight: bold;
    margin-right: 8px;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
    padding: 15px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: color 0.2s;
}

.faq-question:hover {
    color: #0077B5;
}

.faq-question i {
    color: #0077B5;
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.faq-answer {
    color: #666;
    line-height: 1.7;
    padding: 12px 0 5px 28px;
    display: none;
    font-size: 0.98rem;
}

.faq-answer.visible {
    display: block;
}

.contact-form {
    max-width: 650px;
    margin: 25px auto 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group label i {
    color: #0077B5;
    font-size: 0.85rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: #f8fafc;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #0077B5;
    box-shadow: 0 0 0 3px rgba(0, 119, 181, 0.1);
    background: white;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, #0077B5 0%, #005885 100%);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 119, 181, 0.3);
}

.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.email-direct {
    text-align: center;
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 100%);
    border-radius: 12px;
}

.email-direct p {
    color: #555;
    margin-bottom: 10px;
    font-size: 1rem;
}

.email-direct a {
    color: #0077B5;
    font-weight: 600;
    font-size: 1.15rem;
    text-decoration: none;
}

.email-direct a:hover {
    text-decoration: underline;
}

/* ---- POLÍTICA DE PRIVACIDAD ---- */

.privacy-container {
    max-width: 820px;
    margin: 0 auto;
    padding: 2rem 1.25rem;
}

/* Header card — estilo cp-header-card */
.privacy-header-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.privacy-header-top {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #0077B5 0%, #005885 100%);
    color: white;
}

.privacy-header-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.privacy-header-text h1 {
    font-size: 1.4rem;
    margin: 0;
    font-weight: 700;
    color: white;
}

.privacy-header-text span {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 2px;
    display: block;
}

/* Card sections — estilo cp-sidebar-section */
.privacy-card {
    background: white;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    margin-bottom: 1rem;
    overflow: hidden;
}

.privacy-card-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f3f4f6;
}

.privacy-card-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.privacy-card-header h3 i {
    color: #0077B5;
    font-size: 0.95rem;
    width: 20px;
    text-align: center;
}

.privacy-card-body {
    padding: 1.25rem 1.5rem;
}

.privacy-card-body p {
    color: #4b5563;
    line-height: 1.7;
    font-size: 0.92rem;
    margin: 0 0 0.75rem;
}

.privacy-card-body p:last-child {
    margin-bottom: 0;
}

.privacy-card-body a {
    color: #0077B5;
    font-weight: 600;
    text-decoration: none;
}

.privacy-card-body a:hover {
    text-decoration: underline;
}

.privacy-card-body ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
}

.privacy-card-body ul li {
    position: relative;
    padding: 0.5rem 0 0.5rem 1.25rem;
    color: #4b5563;
    font-size: 0.92rem;
    line-height: 1.6;
    border-bottom: 1px solid #f9fafb;
}

.privacy-card-body ul li:last-child {
    border-bottom: none;
}

.privacy-card-body ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 6px;
    height: 6px;
    background: #0077B5;
    border-radius: 50%;
}

/* Collapsible details — estilo job-form-section */
.privacy-details {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    margin-top: 0.75rem;
    overflow: hidden;
}

.privacy-details summary {
    padding: 0.875rem 1.25rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: #f9fafb;
    transition: background 0.2s;
    list-style: none;
}

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

.privacy-details summary::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.7rem;
    color: #9ca3af;
    margin-left: auto;
    transition: transform 0.2s;
}

.privacy-details[open] summary::after {
    transform: rotate(180deg);
}

.privacy-details summary:hover {
    background: #f3f4f6;
}

.privacy-details summary i {
    color: #0077B5;
    font-size: 0.9rem;
    width: 18px;
    text-align: center;
}

.privacy-details-body {
    padding: 1rem 1.25rem;
}

.privacy-details-body p {
    color: #4b5563;
    line-height: 1.7;
    font-size: 0.9rem;
    margin: 0 0 0.5rem;
}

.privacy-details-body ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
}

.privacy-details-body ul li {
    position: relative;
    padding: 0.4rem 0 0.4rem 1.25rem;
    color: #4b5563;
    font-size: 0.9rem;
    line-height: 1.6;
}

.privacy-details-body ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 5px;
    height: 5px;
    background: #0077B5;
    border-radius: 50%;
}

/* Purposes grid — compact inline items */
.privacy-purposes {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.privacy-purpose-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 0.875rem 1rem;
    background: #f9fafb;
    border-radius: 10px;
    border: 1px solid #f3f4f6;
    transition: background 0.2s;
}

.privacy-purpose-item:hover {
    background: #f3f4f6;
}

.privacy-purpose-item > i {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #e3f2fd;
    color: #0077B5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.privacy-purpose-item > div {
    min-width: 0;
}

.privacy-purpose-item strong {
    display: block;
    font-size: 0.9rem;
    color: #1f2937;
    margin-bottom: 0.15rem;
}

.privacy-purpose-item span {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.5;
}

/* Highlight box */
.privacy-highlight {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #f0f7ff;
    border: 1px solid #bfdbfe;
    border-radius: 10px;
    padding: 0.875rem 1.25rem;
    margin-top: 0.75rem;
}

.privacy-highlight > i {
    color: #0077B5;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.privacy-highlight p {
    color: #1e40af;
    font-size: 0.88rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
}

/* Contact footer — compact */
.privacy-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    gap: 1rem;
}

.privacy-contact p {
    margin: 0;
    color: #4b5563;
    font-size: 0.92rem;
    font-weight: 500;
}

.privacy-contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: #0077B5;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    transition: background 0.2s;
    white-space: nowrap;
}

.privacy-contact a:hover {
    background: #005f94;
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-container {
        padding: 1.5rem 1rem;
    }

    .privacy-header-top {
        padding: 1.25rem 1.5rem;
    }

    .privacy-header-text h1 {
        font-size: 1.2rem;
    }

    .privacy-card-body {
        padding: 1rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .privacy-container {
        padding: 1rem 0.75rem;
    }

    .privacy-header-top {
        padding: 1rem 1.25rem;
        gap: 1rem;
    }

    .privacy-header-icon {
        width: 44px;
        height: 44px;
        font-size: 1.15rem;
    }

    .privacy-header-text h1 {
        font-size: 1.1rem;
    }

    .privacy-card-header {
        padding: 0.875rem 1.25rem;
    }

    .privacy-card-body {
        padding: 1rem;
    }

    .privacy-contact {
        flex-direction: column;
        text-align: center;
    }

    .privacy-contact a {
        width: 100%;
        justify-content: center;
    }

    .privacy-purpose-item {
        padding: 0.75rem;
    }
}

/* Legacy — kept for backward compat */
.privacy-subsection {
    background: #f8fafc;
    border-radius: 12px;
    padding: 25px;
    margin: 20px 0;
    border-left: 4px solid #0077B5;
}

.privacy-subsection h3 {
    color: #0077B5;
    font-size: 1.15rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.privacy-subsection h3 i {
    font-size: 1rem;
}

.privacy-subsection p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
}

/* ---- ESPECIFICACIONES (nuevo) ---- */

.browser-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.browser-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.browser-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.browser-card i {
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.browser-card.supported i {
    color: #28a745;
}

.browser-card.not-supported i {
    color: #dc3545;
}

.browser-card span {
    font-weight: 500;
    color: #333;
    font-size: 0.95rem;
}

.specs-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 20px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.specs-table th,
.specs-table td {
    padding: 14px 18px;
    text-align: left;
}

.specs-table th {
    background: linear-gradient(135deg, #0077B5 0%, #005885 100%);
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

.specs-table td {
    border-bottom: 1px solid #e2e8f0;
    color: #555;
    font-size: 0.95rem;
}

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

.specs-table tbody tr:hover {
    background: #f0f7ff;
}

/* ---- RESPONSIVE ---- */

/* Tablets */
@media (max-width: 1024px) {
    .container {
        padding: 40px;
    }

    .container h1 {
        font-size: 2.2rem;
    }

    .browser-list {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

/* Móviles */
@media (max-width: 768px) {
    body.info-blue {
        padding: 20px 10px;
    }

    .container {
        padding: 30px 25px;
        border-radius: 16px;
    }

    .container h1 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .container h2 {
        font-size: 1.3rem;
        margin: 25px 0 12px;
    }

    .container p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .browser-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .browser-item {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .warning-box,
    .info-box {
        padding: 15px;
        font-size: 0.9rem;
    }

    .back-link {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .requirements-table th,
    .requirements-table td {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .project-header h1 {
        font-size: 1.8rem;
    }

    .section {
        padding: 25px;
    }

    .concept-box {
        padding: 25px;
    }

    .concept-box h3 {
        font-size: 1.4rem;
    }

    .stats-row {
        gap: 25px;
    }

    .stats-row .stat-number {
        font-size: 2rem;
    }
}

/* Móviles pequeños */
@media (max-width: 480px) {
    body.info-blue {
        padding: 15px 5px;
    }

    .container {
        padding: 20px 15px;
    }

    .container h1 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .container h2 {
        font-size: 1.1rem;
    }

    .container p {
        font-size: 0.9rem;
        text-align: left;
    }

    .container ul {
        padding-left: 20px;
        font-size: 0.9rem;
    }

    .requirements-table {
        font-size: 0.85rem;
    }

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

/* ---- RESPONSIVE: Centro de Ayuda, Privacidad, Especificaciones ---- */

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .faq-question {
        font-size: 0.95rem;
    }

    .email-direct {
        padding: 20px 15px;
    }

    .browser-grid {
        grid-template-columns: 1fr;
    }

    .browser-card {
        padding: 12px 15px;
    }

    .specs-table th,
    .specs-table td {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .privacy-subsection {
        padding: 18px;
    }
}

@media (max-width: 480px) {
    .browser-card span {
        font-size: 0.85rem;
    }

    .specs-table {
        font-size: 0.85rem;
    }

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