/* Hero section specific styles */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 40px; /* Additional padding for header clearance */
}

.hero .container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-content {
    max-width: 700px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

.hero h1 {
    text-align: center;
    width: 100%;
    font-size: 2rem; /* Reduced font size to prevent wrapping */
    white-space: nowrap; /* Prevent text from wrapping */
    margin-bottom: 1.5rem;
}

.hero p {
    text-align: center;
    width: 100%;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero .btn {
    display: inline-block;
    margin: 0 auto;
} 