body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('header-bg.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 0;
    animation: pulse 1.5s infinite;
}

header .logo {
    max-width: 100px;
}

nav {
    background-color: #333;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
}

nav ul li a {
    display: block;
    padding: 15px;
    color: white;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

nav ul li a:hover {
    background-color: #4CA1AF;
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    border-radius: 5px;
    animation: fadeInUp 1s;
}
.container p {
    color: #2C3E50;
}

h2 {
    text-align: center;
    color: #2C3E50;
    margin-bottom: 20px;
}

p, ul {
    margin-bottom: 20px;
}

ul {
    padding-left: 20px;
}

ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

ul li i {
    margin-right: 10px;
    color: #4CA1AF;
}

.apply-button {
    display: inline-block;
    padding: 10px 20px;
    color: white;
    background-color: #4CA1AF;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.apply-button:hover {
    background-color: #2C3E50;
}

.team-members {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.team-member {
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s;
}

.team-member:hover {
    transform: scale(1.05);
}

.team-member img {
    width: 100%;
    border-radius: 50%;
}

.job-offers {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.job {
    flex: 1 1 30%;
    background: #f9f9f9;
    padding: 20px;
    margin: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.job:hover {
    transform: scale(1.05);
}

.faq-item {
    background: #f9f9f9;
    padding: 20px;
    margin: 10px 0;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background 0.3s;
}

.faq-item:hover {
    background: #4CA1AF;
    color: white;
}

.faq-item h3 {
    margin: 0;
}

.testimonial-carousel {
    display: flex;
    overflow: hidden;
    position: relative;
}

.testimonial {
    flex: 0 0 100%;
    transition: transform 0.5s;
    padding: 20px;
    box-sizing: border-box;
    background: #f9f9f9;
    margin: 0 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

footer {
    text-align: center;
    padding: 10px 0;
    background-color: #333;
    color: white;
    margin-top: 20px;
}

.parallax {
    background: url('parallax-bg.jpg') no-repeat center center fixed;
    background-size: cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.parallax h2 {
    font-size: 3em;
}

#contact-form {
    display: flex;
    flex-direction: column;
}

#contact-form label {
    margin: 10px 0 5px;
}

#contact-form input, #contact-form textarea {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#contact-form button {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #4CA1AF;
    color: white;
    cursor: pointer;
}

#contact-form button:hover {
    background-color: #2C3E50;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(76, 161, 175, 0.5);
    }
    50% {
        box-shadow: 0 0 15px 15px rgba(76, 161, 175, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
