body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #181a1b;
    color: #f1f1f1;
}

.navbar {
    background: #181a1b;
    color: #fff;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.4);
}
.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0.5rem 1rem;
}
.nav-logo {
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}
.nav-menu {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}
.nav-menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
}
.nav-menu li a:hover {
    color: #ff9800;
}

.hero-carousel {
    margin-top: 70px;
    padding: 0;
    min-height: unset;
}
.carousel {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    height: 60vh;
    min-height: 320px;
    max-height: 500px;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    align-items: stretch;
    justify-content: center;
    background: #23272a;
}
.carousel-slide {
    display: none;
    position: absolute;
    width: 100vw;
    height: 100%;
    left: 0;
    top: 0;
}
.carousel-slide.active {
    display: block;
    position: absolute;
}
.carousel-slide img {
    width: 100vw;
    height: 60vh;
    min-height: 320px;
    max-height: 500px;
    object-fit: cover;
    border-radius: 0;
    filter: brightness(0.7) contrast(1.1);
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.company-name {
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 0 4px 24px rgba(0,0,0,0.9), 0 1px 2px rgba(0,0,0,0.7);
    letter-spacing: 2px;
    background: rgba(24,26,27,0.6);
    padding: 1rem 2.5rem;
    border-radius: 12px;
    margin: 0;
}
.carousel-caption {
    background: rgba(24,26,27,0.7);
    color: #ffedc2;
    padding: 0.7rem 1.2rem;
    text-align: center;
    border-radius: 0 0 10px 10px;
    font-size: 1.2rem;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    min-width: 200px;
    z-index: 2;
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(24,26,27,0.7);
    color: #fff;
    border: none;
    font-size: 2rem;
    padding: 0.2rem 0.7rem;
    cursor: pointer;
    border-radius: 50%;
    z-index: 4;
    transition: background 0.2s;
}
.carousel-btn:hover {
    background: #ff9800;
    color: #23272a;
}
.carousel-btn.prev {
    left: 20px;
}
.carousel-btn.next {
    right: 20px;
}
@media (max-width: 900px) {
    .carousel, .carousel-slide img, .hero-overlay {
        height: 40vh;
        min-height: 180px;
        max-height: 320px;
    }
    .company-name {
        font-size: 2rem;
        padding: 0.7rem 1.2rem;
    }
}
@media (max-width: 600px) {
    .carousel, .carousel-slide img, .hero-overlay {
        height: 28vh;
        min-height: 120px;
        max-height: 180px;
    }
    .company-name {
        font-size: 1.2rem;
        padding: 0.4rem 0.7rem;
    }
    .info-section {
        padding: 1rem;
    }
}

.info-section {
    max-width: 900px;
    margin: 2rem auto;
    background: #23272a;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.info-section h2 {
    margin-top: 0;
    color: #ff9800;
}
@media (max-width: 600px) {
    .navbar-container {
        flex-direction: column;
        align-items: flex-start;
    }
    .carousel {
        max-width: 100vw;
    }
    .carousel-slide img {
        height: 180px;
    }
    .info-section {
        padding: 1rem;
    }
} 