* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, Inter, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #2b2b2b;
}

header {
    background: #2f2f2f;
    color: #fff;
    padding: 5px 40px;
    height: 75px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

.nav-img {
    height: 90%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.nav-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
}

nav a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
    font-weight: bold;
}

.menu-toggle {
    display: none;
    font-size: 32px;
    cursor: pointer;
}
@media (max-width: 780px) {
    nav {
        display: flex;
        flex-direction: column;
        background: #2f2f2f;
        padding: 0;
        position: absolute;
        top: 70px;
        right: 0;
        width: 160px;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }
    nav.active {
        max-height: 500px;
    }
    nav a {
        padding: 14px 10px;
        text-align: center;
        margin: 0;
    }
    nav a:hover {
        text-decoration: underline;
        text-decoration-thickness: 2px;
    }
    .menu-toggle {
        display: block;
    }
}

.section {
    padding: 60px 40px;
    max-width: 1100px;
    margin: auto;
    text-align: center;
    opacity: 1;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 28px;
    letter-spacing: -0.75px;
}
.section-description {
    font-size: 1.05rem;
    color: #444;
    max-width: 850px;
    margin: 15px auto 50px auto;
    line-height: 1.7;
    text-align: center;
}
@media (max-width: 780px) {
    .section-description {
        font-size: 0.95rem;
        margin-bottom: 40px;
    }
}
.section p {
    font-size: 1rem;
    line-height: 1.75;
    color: #444;
    padding-top: 25px;
}

.services {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}
.service-card {
    background: white;
    padding: 0px;
    flex: 1 1 375px;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0,0,0,0.2);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
}
h1 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    letter-spacing: -0.75px;
    margin-bottom: 50px;
    font-weight: 600;
}
h2 {
    padding-top: 75px;
    padding-bottom: 50px;
    width: 100%;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 10px;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}
.service-card h3,
.service-card p {
    padding: 0 25px;
    transition: color 0.3s ease;
}
.service-btn {
    margin: 0 auto 25px;
    background: none;
    padding: 0;
    border-radius: 0;
    color: #ee7606;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.1s ease;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.image-container {
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    flex-shrink: 0;
}
.image-container img {
    width: 100%;
    object-fit: contain;
    display: block;
}

.cta-section {
    margin-top: 80px;
    padding: 70px 40px;
    background: #f6f6f6;
}
.cta-container {
    max-width: 900px;
    margin: auto;
    text-align: center;
}
.cta-container h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
    color: #2b2b2b;
}
.cta-container p {
    font-size: 1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto 28px;
    line-height: 1.7;
}
.cta-btn {
    margin-top: 25px;
    display: inline-block;
    padding: 12px 28px;
    background: #ee7606;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    margin-left: 10px;
}
.cta-secondary {
    background: #ee7606;
    color: #fff;
}
.cta-secondary:hover {
    background: #ee7606;
    transform: scale(1.05);
}
@media (max-width: 780px) {
    .cta-section {
        padding: 50px 20px;
    }

    .cta-container h2 {
        font-size: 1.7rem;
    }

    .cta-container p {
        font-size: 0.95rem;
    }
}

footer {
    background: #2f2f2f;
    color: #fff;
    padding: 40px 20px 20px;
    margin-top: 60px;
}
.footer-container {
    max-width: 1100px;
    margin:auto;
    display:flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    text-align: left;
}
.footer-col h3, .footer-col h4 {
    margin-bottom: 12px;
}
.footer-col p, .footer-col a {
    color: #ccc;
    font-size: 15px;
    line-height: 1.6;
}
.footer-col p {
    margin-bottom: 10px;
}
.footer-col a {
    display:block;
    text-decoration:none;
    margin-bottom:8px;
}
.footer-col a:hover {
    color: #da710f;
}
.footer-bottom {
    text-align:center;
    margin-top:30px;
    padding-top:15px;
    border-top:1px solid #444;
    font-size:14px;
    color:#aaa;
}
@media (max-width: 780px) {
    .cta-btn { padding:10px 20px; font-size:16px; }
    .footer-container { flex-direction: column; text-align: center; }
}
