* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #333;
    background-color: #fff;
    line-height: 1.6;
}

.header {
    text-align: center;
    padding: 40px 20px 20px;
    border-bottom: 1px solid #e0e0e0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.logo-icon {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.title-container {
    text-align: left;
}

.main-title {
    font-size: 48px;
    font-weight: normal;
    color: #1a1a1a;
    letter-spacing: 2px;
}

.subtitle {
    font-size: 24px;
    color: #999;
    font-weight: normal;
    font-family: 'Arial', sans-serif;
    letter-spacing: 4px;
}

.nav-divider {
    width: 80%;
    height: 1px;
    background-color: #e0e0e0;
    margin: 0 auto 20px;
}

.nav-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: #999;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #333;
}

.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.section-title {
    font-size: 28px;
    font-weight: normal;
    margin-bottom: 20px;
    color: #1a1a1a;
    letter-spacing: 1px;
}

.about-text {
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
    text-align: justify;
}

.gallery-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.carousel-container {
    position: relative;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-image.active {
    opacity: 1;
}

.carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
}

.overlay-text {
    color: #fff;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    letter-spacing: 2px;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
}

.nav-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #ccc;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 1);
    border-color: #333;
}

.carousel-info {
    text-align: center;
    margin-top: 20px;
}

.carousel-title {
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 8px;
    color: #1a1a1a;
    letter-spacing: 2px;
}

.carousel-desc {
    font-size: 13px;
    color: #999;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
}

.view-projects {
    padding: 10px 30px;
    border: 1px solid #333;
    background: transparent;
    color: #333;
    font-size: 13px;
    cursor: pointer;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.view-projects:hover {
    background: #333;
    color: #fff;
}

.footer {
    text-align: center;
    padding: 40px;
    border-top: 1px solid #e0e0e0;
    margin-top: 80px;
}

.footer p {
    color: #999;
    font-size: 13px;
    font-family: 'Arial', sans-serif;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .title-container {
        text-align: center;
    }

    .main-title {
        font-size: 32px;
    }

    .subtitle {
        font-size: 18px;
    }

    .about-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gallery-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nav-list {
        gap: 20px;
    }

    .nav-link {
        font-size: 14px;
    }
}