
.container {
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 2rem;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--primary-text-color);
    margin-bottom: 3rem;
    opacity: 0.8;
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    overflow: hidden;
    border-radius: 10px;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    height: auto;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 650px;
    object-fit: cover;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s;
}

.carousel-button:hover {
    background: rgba(255, 122, 0, 0.7);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.dot.active {
    background: var(--accent-color);
}

/* Social Links */
.social-links {
    list-style: none;
    padding: 0;
}

.social-links li {
    margin-bottom: 1rem;
}

.social-links a {
    color: var(--primary-text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--accent-color);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    .carousel-slide img {
        height: 500px;
    }

    .carousel-button {
        padding: 0.8rem;
        font-size: 1rem;
    }
}