body {
    font-family: 'Inter', sans-serif;
    color: #333;
}
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.nav-link.active {
    font-weight: 700;
}
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1601614051010-0d3e230303b3?auto=format&fit=crop&q=80&w=1920&h=1080');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0;
}
.btn-custom-primary {
    background-color: #709CA7;
    border-color: #709CA7;
    color: white;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 700;
}
.btn-custom-primary:hover {
    background-color: #628A94;
    border-color: #628A94;
}
.section {
    padding: 80px 0;
}
.bg-light-blue {
    background-color: #B8CBD0;
}
.bg-dark-blue {
    background-color: #137C8B;
    color: white;
}
.bg-medium-blue {
    background-color: #709CA7;
}
.card {
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.testimonial-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}
.img-project {
    height: 250px;
    object-fit: cover;
    border-radius: 1rem 1rem 0 0;
}
footer {
    background-color: #137C8B;
    color: white;
    padding: 40px 0;
}
.social-icons a {
    color: white;
    font-size: 1.5rem;
    margin: 0 10px;
}
h2 {
    color: #137C8B;
    font-weight: 700;
    margin-bottom: 2rem;
}
.text-accent-blue {
    color: #709CA7;
}
.logo {
    height: 80px;
    object-fit: contain;
}
.object-fit-cover {
    object-fit: cover;
}