/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: white;
}

h1, h2, h3, p {
    margin: 0;
    padding: 0;
}

/* Navbar */
.navbar {
    display: flex;
    align-items: center;
    padding: 16px;
    background-color: #1b1919;
    color: white;
}

.nav-links {
    list-style-type: none;
    display: flex;
    gap: 20px;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background-image: url("652771a2ad43d990a8837c07_Blog-feature-HR-Pillar.png");
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
}

.hero-content p {
    font-size: 1.5rem;
    margin: 20px 0;
}

.cta-button {
    background-color: #f04e23;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #c13b1c;
}

/* About Section */
.about-section {
    padding: 50px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Services Section */
.services-section {
    padding: 50px 20px;
    text-align: center;
}

.services-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.service-card {
    background-color: #333;
    color: white;
    padding: 30px;
    margin: 20px;
    border-radius: 10px;
    width: 250px;
    text-align: center;
}

.service-card h3 {
    margin-bottom: 10px;
}

.service-card p {
    font-size: 1rem;
}

/* Footer Section */
.footer-section {
    padding: 30px 20px;
    background-color: #333;
    color: white;
    text-align: center;
}
