body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    overflow-x: hidden;
}

/* Colors */
.bg-dark-grey {
    background-color: #1a1a1a;
}

/* Hero Section */
.hero-text-area {
    min-height: 80vh;
}

.hero-text-area h1 {
    font-weight: 300;
    line-height: 1.2;
    max-width: 80%;
}

.hero-img {
    width: 100%;
    height: 80vh;
    object-fit: cover;
}

/* Services Section */
.section-title {
    font-size: 2.5rem;
    font-weight: 300;
}

.service-number {
    font-size: 0.9rem;
    color: #fff;
    margin-right: 10px;
}

.service-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    filter: grayscale(20%);
    transition: transform 0.3s ease;
}

.service-card img:hover {
    transform: scale(1.02);
}

/* Footer Section */
.footer-section {
    color: #000;
}

.social-icons a {
    color: #000;
    margin-right: 15px;
    font-size: 1.2rem;
    text-decoration: none;
}

.footer-brand {
    font-size: clamp(3rem, 10vw, 8rem);
    letter-spacing: -2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-text-area {
        min-height: auto;
        padding: 60px 20px !important;
    }
    .hero-img {
        height: 50vh;
    }
}