/* Hero Section */
.hero {
    background: linear-gradient(to right, #3498db, #6dd5fa);
    color: white;
    text-align: center;
    padding: 100px 20px;
    margin-bottom: 60px;
    width: 100%; /* Ensure full width */
    box-sizing: border-box; /* Include padding in width calculation */
}

.hero-content {
    max-width: 800px;
    margin: 0 auto; /* Center the content horizontally */
    width: 100%; /* Ensure the hero content uses full available width */
}

.hero-content h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0;
    list-style: none;
}

.contact-links a {
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: none;
}

.contact-links a:hover {
    text-decoration: underline;
}