body {
    font-family: Arial, sans-serif;
}

h1, h2, h3 {
    font-weight: bold;
}

.card {
    border-radius: 10px;
}

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    background: url('../images/hero.jpg') center/cover no-repeat;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgb(109 62 137);
}

.hero-content {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-top: 20px;
}

.btn-hero {
    background: #3fe0c5;
    color: #000;
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 4px;
}

.hero-contact {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 3;
}

.hero-social {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.hero-social a {
    display: block;
    color: #fff;
    font-size: 20px;
    margin: 10px 0;
}

/* SERVICES */
.service-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
