.intro-section h1 {
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: 700;
    color: #0066ff;
    margin-bottom: 30px;
    line-height: 1.2;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Remove cursor from Typed.js */
.intro-section h1.typed-cursor::after {
    display: none !important;
    border: none !important;
}

.intro-section h1::after {
    content: '' !important;
    display: none !important;
    border: none !important;
}

/* Mobile - Extra Small (< 480px) */
@media (max-width: 479px) {
    .intro-section h1 {
        font-size: 1.75rem;
        margin-bottom: 20px;
        min-height: 60px;
    }
}

/* Tablet - Small (480px - 768px) */
@media (min-width: 480px) and (max-width: 768px) {
    .intro-section h1 {
        font-size: 2.25rem;
        margin-bottom: 25px;
        min-height: 70px;
    }
}

/* Tablet/Desktop - Medium (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .intro-section h1 {
        font-size: 2.75rem;
        margin-bottom: 30px;
        min-height: 85px;
    }
}

/* Desktop - Large (1025px+) */
@media (min-width: 1025px) {
    .intro-section h1 {
        font-size: 3.5rem;
        margin-bottom: 30px;
        min-height: 100px;
    }
}

/* Extra Large Screens (1440px+) */
@media (min-width: 1440px) {
    .intro-section h1 {
        font-size: 3.5rem;
        margin-bottom: 35px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .intro-section h1 {
        animation: none;
    }
}