/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.pexels.com/photos/1687845/pexels-photo-1687845.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

/* Navigation */
.hero-header {
    position: relative;
    z-index: 10;
    padding: 1.5rem 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.flame-icon {
    color: #f97316;
    font-size: 2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #f97316;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f97316;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Content */
.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 5;
}

.hero-logo {
    margin-bottom: 2rem;
}

.flame-container {
    position: relative;
    display: inline-block;
}

.flame-main {
    font-size: 6rem;
    color: #f97316;
    animation: pulse 2s infinite;
    filter: drop-shadow(0 0 20px rgba(249, 115, 22, 0.5));
}

.flame-secondary {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 5.4rem;
    color: #22c55e;
    opacity: 0.6;
    transform: scale(0.9);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    margin-bottom: 2rem;
}

.title-fire,
.title-nova {
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 900;
    line-height: 0.9;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.title-fire {
    color: #a855f7;
    margin-bottom: 0.5rem;
}

.title-nova {
    color: #f97316;
}

.hero-tagline {
    max-width: 600px;
    margin-bottom: 3rem;
}

.hero-tagline p {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: #e5e7eb;
    line-height: 1.5;
}

.highlight {
    color: #f97316;
    font-weight: 600;
}

.hero-cta {
    margin-bottom: 2rem;
}

.cta-button {
    background: #f97316;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.cta-button:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    animation: scroll-wheel 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes scroll-wheel {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(12px); }
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: bold;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.section-intro {
    font-size: 1.25rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #6b7280;
    line-height: 1.6;
}

.dark-section {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
}

.dark-section h2 {
    color: white;
}

.dark-section .section-intro {
    color: #d1d5db;
}

/* Challenge Section */
.challenge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.challenge-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.challenge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
}

.challenge-card:nth-child(1) .card-icon {
    background: #fef2f2;
    color: #dc2626;
}

.challenge-card:nth-child(2) .card-icon {
    background: #f0fdf4;
    color: #16a34a;
}

.challenge-card:nth-child(3) .card-icon {
    background: #fff7ed;
    color: #ea580c;
}

.challenge-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #1f2937;
}

.challenge-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Statistics Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: #374151;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
}

.stat-card:nth-child(1) .stat-icon {
    background: #ef4444;
    color: white;
}

.stat-card:nth-child(2) .stat-icon {
    background: #f97316;
    color: white;
}

.stat-card:nth-child(3) .stat-icon {
    background: #22c55e;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-card:nth-child(1) .stat-number {
    color: #f87171;
}

.stat-card:nth-child(2) .stat-number {
    color: #fb923c;
}

.stat-card:nth-child(3) .stat-number {
    color: #4ade80;
}

.stat-card p {
    color: #d1d5db;
}

/* Chart */
.chart {
    background: #374151;
    padding: 2rem;
    border-radius: 1rem;
    margin-top: 2rem;
}

.chart h3 {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.chart-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.chart-item {
    display: grid;
    grid-template-columns: 1fr 2fr auto;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.chart-label {
    color: #d1d5db;
    font-size: 0.9rem;
}

.chart-bar {
    height: 12px;
    background: #4b5563;
    border-radius: 6px;
    overflow: hidden;
}

.chart-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 1s ease;
    width: 0;
}

.chart-percentage {
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
}

.chart-highlight {
    text-align: center;
}

.highlight-number {
    font-size: 4rem;
    font-weight: bold;
    color: #f87171;
    margin-bottom: 1rem;
}

.chart-highlight p {
    color: #d1d5db;
    font-size: 1.1rem;
    line-height: 1.4;
}

/* Project Section */
.project-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.project-description h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.project-description p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #374151;
}

.feature-list i {
    color: #22c55e;
    font-size: 1.1rem;
}

.project-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
}

.feature-card:nth-child(1) .feature-icon {
    background: #dbeafe;
    color: #2563eb;
}

.feature-card:nth-child(2) .feature-icon {
    background: #f0fdf4;
    color: #16a34a;
}

.feature-card:nth-child(3) .feature-icon {
    background: #faf5ff;
    color: #9333ea;
}

.feature-card:nth-child(4) .feature-icon {
    background: #fff7ed;
    color: #ea580c;
}

.feature-card h4 {
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.feature-card p {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Process Steps */
.process-steps {
    background: white;
    padding:2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    
}

.process-steps h3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #1f2937;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
}

.step-number {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.step:nth-child(1) .step-number {
    background: #3b82f6;
}

.step:nth-child(2) .step-number {
    background: #22c55e;
}

.step:nth-child(3) .step-number {
    background: #f97316;
}

.step:nth-child(4) .step-number {
    background: #ef4444;
}

.step h4 {
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.step p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Impact Section */
.impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.impact-section h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: white;
}

.impact-items {
    margin-bottom: 2rem;
}

.impact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.impact-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.impact-item:nth-child(1) .impact-icon {
    background: #22c55e;
    color: white;
}

.impact-item:nth-child(2) .impact-icon {
    background: #3b82f6;
    color: white;
}

.impact-content h4 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.impact-item:nth-child(1) .impact-content h4 {
    color: #4ade80;
}

.impact-item:nth-child(2) .impact-content h4 {
    color: #60a5fa;
}

.impact-content p {
    color: #d1d5db;
    line-height: 1.5;
}

.impact-stats {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.impact-stat {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.impact-section:nth-child(1) .stat-value {
    color: #4ade80;
}

.impact-section:nth-child(2) .stat-value {
    color: #fb923c;
}

.impact-stat p {
    color: #d1d5db;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #1f2937;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background: #fff7ed;
    color: #ea580c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.contact-details h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #1f2937;
}

.contact-details a {
    color: #ea580c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #c2410c;
}

.contact-details p {
    color: #6b7280;
}

.social-links {
    margin-top: 2rem;
}

.social-links h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: #f3f4f6;
    color: #6b7280;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #ea580c;
    color: white;
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ea580c;
    box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    background: #ea580c;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    background: #c2410c;
    transform: translateY(-1px);
}

/* Credits Section */
.credits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.credit-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.credit-card:hover {
    transform: translateY(-5px);
}

.credit-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
}

.credit-card:nth-child(1) .credit-icon {
    background: #faf5ff;
    color: #9333ea;
}

.credit-card:nth-child(2) .credit-icon {
    background: #f0fdf4;
    color: #16a34a;
}

.credit-card:nth-child(3) .credit-icon {
    background: #fff7ed;
    color: #ea580c;
}

.credit-card:nth-child(4) .credit-icon {
    background: #fef2f2;
    color: #dc2626;
}

.credit-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #1f2937;
}

.credit-card ul {
    list-style: none;
    text-align: left;
}

.credit-card li {
    color: #6b7280;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.credit-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ea580c;
    font-weight: bold;
}

/* Team Section */
.team-section {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.team-section h3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #1f2937;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
}

.member-avatar {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    background: linear-gradient(135deg, #a855f7, #3b82f6);
}

.team-member:nth-child(2) .member-avatar {
    background: linear-gradient(135deg, #22c55e, #3b82f6);
}

.team-member:nth-child(3) .member-avatar {
    background: linear-gradient(135deg, #f97316, #ef4444);
}

.team-member:nth-child(4) .member-avatar {
    background: linear-gradient(135deg, #3b82f6, #a855f7);
}

.team-member h4 {
    font-weight: bold;
    margin-bottom: 0.25rem;
    color: #1f2937;
}

.team-member p {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.team-member span {
    color: #9ca3af;
    font-size: 0.8rem;
}

/* Footer */
footer {
    background: #1f2937;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: white;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-brand i {
    color: #f97316;
    font-size: 2rem;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.implementation-note {
    font-size: 0.9rem;
    color: #9ca3af;
}

.implementation-note strong {
    color: #d1d5db;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #f97316;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #9ca3af;
    font-size: 0.9rem;
}

.scroll-to-top {
    background: #ea580c;
    color: white;
    border: none;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top:hover {
    background: #c2410c;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .flame-main {
        font-size: 4rem;
    }
    
    .flame-secondary {
        font-size: 3.6rem;
    }
    
    .title-fire,
    .title-nova {
        font-size: clamp(3rem, 15vw, 6rem);
    }
    
    .hero-tagline p {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .challenge-grid,
    .stats-grid,
    .credits-grid {
        grid-template-columns: 1fr;
    }
    
    .project-content,
    .contact-content,
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .project-features {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .chart-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0 1rem;
    }
    
    .hero-content {
        padding: 0.5rem;
    }
    
    .challenge-card,
    .contact-form {
        padding: 1.5rem;
    }
    
    .section h2 {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }
    
    .section-intro {
        font-size: 1.1rem;
    }
}