body {
    margin: 0;
    font-family: 'Segoe UI', system-ui, sans-serif;
    background: #ffffff;
    color: #0f2a44;
    line-height: 1.6;
}

/* LANGUAGE SWITCH */
.lang-switch {
    position: fixed;
    top: 15px;
    right: 20px;
    z-index: 1000;
}

.lang-switch button {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 6px 10px;
    margin-left: 4px;
    cursor: pointer;
}

/* HERO */
.hero {
    padding: 70px 10%;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.subtitle {
    max-width: 760px;
    margin: 0 auto;
    color: #4b5563;
}

/* BUTTON */
.btn-primary {
    margin-top: 22px;
    display: inline-block;
    background: #f97316;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

/* ABOUT */
.about {
    padding: 60px 10%;
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.about-image {
    flex: 0 0 260px;
}

.about-image img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.about-text h2 {
    text-align: center;
    margin-bottom: 22px;
}

.about-text p {
    text-align: justify;
    margin-bottom: 14px;
}

/* CERTIFICATIONS */
.certifications {
    text-align: center;
    margin-top: 26px;
}

.certifications img {
    height: 48px;
    margin: 6px 8px;
}

/* SERVICES */
.services {
    background: #f9fafb;
    padding: 60px 10%;
}

.services h2 {
    text-align: center;
    margin-bottom: 32px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}

.service-card {
    background: #ffffff;
    padding: 24px;
    border-radius: 12px;
    border-top: 4px solid #f97316;
}

.service-card h3 {
    text-align: center;
    margin-bottom: 12px;
}

/* PRICING */
.pricing {
    text-align: center;
    padding: 60px 10%;
}

.price-box {
    display: inline-block;
    padding: 30px 45px;
    border: 2px solid #f97316;
    border-radius: 12px;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #f97316;
}

/* CONTACT */
.contact {
    text-align: center;
    padding: 60px 10%;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #0f2a44;
    font-weight: 600;
}

/* ICON SIZE FIX */
.contact-item img {
    width: 32px;
    height: 32px;
    max-width: 32px;
    max-height: 32px;
}

/* FLOATING WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    z-index: 999;
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-text p {
        text-align: left;
    }

    .contact-info {
        flex-direction: column;
    }
}
