* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background: #f4f4f4;
}

header {
    background: linear-gradient(to right, #0070f3, #00c4b4);
    color: white;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #f4f4f4;
}

nav ul li a.active {
    font-weight: 700;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

.header-logo {
    height: 50px;
    width: auto;
}

.hero {
    background: linear-gradient(to bottom, #0070f3, #ffffff);
    text-align: center;
    padding: 6rem 2rem;
    color: #333;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
}

.hero-content p {
    font-size: 1.2rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta {
    background: #00c4b4;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
    margin-top: 1rem;
}

.cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.services,
.about,
.contact {
    padding: 4rem 2rem;
    text-align: center;
    background: white;
    margin: 2rem auto;
    max-width: 1200px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.services h1,
.services h2,
.about h2,
.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.solutions-list {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    list-style-type: disc;
    padding-left: 2rem;
    margin-bottom: 2rem;
}

.solutions-list li {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about p {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.service-card {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #0070f3;
}

.service-card p {
    font-size: 1rem;
    color: #666;
}

.contact p {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    color: #444;
}

.team-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.team-member {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member-content {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
}

.team-img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 8px;
    border: 3px solid #0070f3;
}

.team-member-text {
    flex: 1;
}

.team-member h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #0070f3;
}

.team-member .member-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.team-member .member-bio {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
}

.team-member .bio-intro {
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.team-member .bio-subheading {
    font-weight: 600;
    color: #222;
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

.team-member .member-bio ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-top: 0.5rem;
}

.team-member .member-bio li {
    margin-bottom: 0.4rem;
}

.divider {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0), #ccc, rgba(0, 0, 0, 0));
    margin: 1.5rem 0;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #333;
}

.contact input,
.contact textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.contact textarea {
    height: 150px;
}

.contact button.cta {
    width: 100%;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem;
}

footer p {
    margin: 0.5rem 0;
}

.social-links {
    margin-top: 1rem;
}

.social-icon {
    color: white;
    font-size: 1.5rem;
    margin: 0 1rem;
    text-decoration: none;
}

@media (max-width: 768px) {
    nav {
        flex-wrap: wrap;
    }
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #0070f3;
    }
    nav ul.active {
        display: flex;
    }
    nav ul li {
        margin: 0.5rem 0;
        text-align: center;
    }
    .menu-toggle {
        display: block;
    }
    .header-logo {
        height: 40px;
    }
    .hero {
        padding: 4rem 1rem;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .services,
    .about,
    .contact {
        padding: 3rem 1rem;
        margin: 1rem;
    }
    .services h1,
    .services h2,
    .about h2,
    .contact h2 {
        font-size: 2rem;
    }
    .solutions-list {
        padding-left: 1.5rem;
    }
    .solutions-list li {
        font-size: 1rem;
    }
    .about p {
        font-size: 1rem;
    }
    .services-grid {
        gap: 1.5rem;
    }
    .service-card {
        padding: 1rem;
    }
    .service-card h3 {
        font-size: 1.2rem;
    }
    .service-card p {
        font-size: 0.95rem;
    }
    .contact p {
        font-size: 1rem;
    }
    .team-list {
        max-width: 100%;
        padding: 0 1rem;
        gap: 2rem;
    }
    .team-member {
        padding: 2rem;
    }
    .team-member-content {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .team-img {
        width: 110px;
        height: 110px;
    }
    .team-member h3 {
        font-size: 1.5rem;
    }
    .team-member .member-title {
        font-size: 1.2rem;
    }
    .team-member .member-bio {
        font-size: 1rem;
    }
    .team-member .bio-subheading {
        font-size: 1.05rem;
    }
}