body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #000;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    background-color: #000;
    color: #fff;
    padding: 1rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    margin-top: 40px;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 2rem;
}

.logo-container {
    margin-bottom: 1.5rem;
}

.logo-container img {
    height: 120px;
    width: 120px;
    object-fit: contain;
}

.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 0.5rem;
}

.cta {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
}

.services {
    padding: 2rem;
    background-color: #fff;
}

.services h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.service {
    margin-bottom: 1.5rem;
}

.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 30vh;
    text-align: center;
    margin-bottom: 0;
}

.contact h2 {
    margin-bottom: 1rem;
}

.contact p {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: #fff;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #25d366;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 0.8rem 1.5rem;
    border: 2px solid #25d366;
    border-radius: 30px;
    transition: all 0.3s ease;
    margin-top: auto;
    margin-bottom: auto;
}

.whatsapp-link:hover {
    background-color: #25d366;
    color: #000;
}

.whatsapp-link img {
    height: 38px;
    width: 38px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

footer {
    text-align: center;
    padding: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

.highlight-whatsapp {
    color: #25d366;
    font-weight: bold;
    background: linear-gradient(90deg, #25d366 30%, #fff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 8px #25d36699;
    padding: 0 4px;
    border-radius: 4px;
}

.highlight-ia {
    color: #00c3ff;
    font-weight: bold;
    background: linear-gradient(90deg, #00c3ff 30%, #fff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 8px #00c3ff99;
    padding: 0 4px;
    border-radius: 4px;
}

.highlight-apis {
    color: #ff9800;
    font-weight: bold;
    background: linear-gradient(90deg, #ff9800 30%, #fff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 8px #ff980099;
    padding: 0 4px;
    border-radius: 4px;
}
