.intro-section {
    padding: 40px;
    text-align: center;
}

.intro-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.intro-text {
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .intro-section {
        padding: 30px 20px; /* Adjusted padding for tablets */
    }
    .intro-section h2 {
        font-size: 2rem; /* Reduced font size for tablets */
    }
    .intro-text {
        font-size: 0.95rem; /* Adjusted font size for tablets */
    }
}

@media (max-width: 480px) {
    .intro-section {
        padding: 20px 15px; /* Adjusted padding for mobile */
    }
    .intro-section h2 {
        font-size: 1.8rem; /* Reduced font size for mobile */
    }
    .intro-text {
        font-size: 0.9rem; /* Adjusted font size for mobile */
    }
}
