.hero-heading {
    margin: 50px auto 0;
    max-width: 950px;
    font-size: 44px;
    font-weight: 900;
    text-align: center;
    color: #181818;
}

.hero-subtitle {
    margin: 24px auto 0;
    max-width: 950px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    color: #181818;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 60px auto 0;
}

.hero-btn {
    font-size: 16px;
    font-weight: 600;
    color: #1532EE;
    border-radius: 12px;
    border: 1px solid #1779F93D;
    padding: 12px 24px;
    cursor: pointer;
    font-family: 'Cabin', sans-serif;
    text-decoration: none;
}

.hero-btn-primary {
    background-color: #1779F90D;
}

.hero-btn-secondary {
    background-color: transparent;
}

.projects-container {
    margin: 60px auto 0;
    max-width: 1300px;
    padding: 0 40px;
}

.projects-scroll {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    user-select: none;
}

.projects-scroll::-webkit-scrollbar {
    display: none;
}

.projects-scroll.dragging {
    cursor: grabbing;
}

.section-title-container {
    margin: 60px auto 0;
    max-width: 100%;
    padding: 0 40px;
    display: flex;
    justify-content: center;
}

.section-title {
    background-color: #EDEDED;
    border-radius: 12px;
    padding: 10px 24px;
    color: #181818;
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    display: flex;
    align-items: center;
    width: fit-content;
}

.about-text-container {
    max-width: 950px;
    margin: 24px auto 0;
    padding: 0 40px;
}

.about-text {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #181818;
    margin-bottom: 16px;
}

.section-divider {
    max-width: 450px;
    margin-top: 60px;
    margin-left: auto;
    margin-right: auto;
    height: 1px;
    background: #D0D0D0;
    border: none;
}

.contact-text-container {
    max-width: 950px;
    margin: 24px auto 0;
    padding: 0 40px;
}

.contact-text {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #181818;
    margin-bottom: 16px;
}

.contact-actions {
    display: flex;
    justify-content: center;
    margin: 24px auto 0;
}

.services-images-container {
    margin: 60px auto 0;
    max-width: 1200px;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.services-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-image-wrapper {
    position: relative;
}

.service-image {
    width: 362px;
    height: 240px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.service-image-center {
    height: 500px;
}

.service-image-text {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    width: 100%;
}

.project-card {
    width: 260px;
    height: 360px;
    border-radius: 16px;
    background-color: #000;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    padding: 12px;
    box-sizing: border-box;
}

.project-image {
    width: 100%;
    height: calc(100% - 64px);
    object-fit: contain;
    display: block;
    border-radius: 8px;
}

.project-card-link {
    display: flex;
    flex-shrink: 0;
}

.project-card-bottom {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid #fff;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    box-sizing: border-box;
    text-decoration: none;
    z-index: 2;
}

.project-card-bottom--light {
    background-color: #F4F4F4;
    border: 1px solid #1a1a1a;
}

.company-logo {
    max-width: 120px;
    max-height: 25px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    pointer-events: none;
}

@media (max-width: 1000px) {
    .projects-container {
        margin: 60px 0 0;
        padding: 0 40px;
    }

    .section-title-container {
        margin: 60px 0 0;
        padding: 0 40px;
    }

    .services-images-container {
        margin: 60px 0 0;
        padding: 0 40px;
        flex-direction: column;
        align-items: center;
    }

    .service-image {
        max-width: 362px;
    }

    .service-image-center {
        height: 240px;
    }
}

@media (max-width: 1000px) {
    .hero-heading {
        margin: 50px 40px 0;
        font-size: 40px;
    }

    .hero-subtitle {
        margin: 24px 40px 0;
    }

    .hero-buttons {
        margin: 48px 40px 0;
        gap: 16px;
    }
}
