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

body {
    font-family: "Times New Roman", Times, serif;
    color: #000000;
    background-color: #bbedd9;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

#logo {
    width: 350px;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}
#intro {
    text-align: center;
}
/* Header Styles */
.hero-section {
    text-align: center;
    padding: 40px 20px;
}

.hero-section h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 15px;
}

.hero-section p {
    font-size: clamp(1rem, 3vw, 1.3rem);
    margin-bottom: 30px;
}

/* Introduction Section */
.introduction-section {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #000000;
    border-radius: 8px;
    position: relative;
}

.introduction-content {
    flex: 1;
}

.introduction-content h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 15px;
}

.services-list {
    margin: 15px 0;
}

.services-list ul {
    list-style: none;
    padding-left: 0;
}

.services-list li {
    margin: 10px 0;
    padding: 8px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

#rotated-title {
    transform: rotate(90deg);
    white-space: nowrap;
    font-size: 2em;
    margin: 0;
    color: #2c5530;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    width: 100%;
    height: 300px;
    max-width: 1200px;
    margin: 20px auto;
    border: 1px solid #000000;
    overflow: hidden;
    border-radius: 8px;
}

.carousel-viewport {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.carousel-item {
    min-width: 100%;
    flex: 0 0 100%;
    box-sizing: border-box;
    padding: 10px;
    height: 100%;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 4px;
    object-fit: cover;
}

/* Premium Carousel Buttons */
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(14, 28, 54, 0.8);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
}

.carousel-button.prev {
    left: 20px;
}

.carousel-button.next {
    right: 20px;
}

.carousel-button:hover {
    background: rgba(14, 28, 54, 0.95);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.carousel-button:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0) 100%
    );
}

.carousel-button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: translateY(-50%);
    box-shadow: none;
}

.carousel-button .arrow {
    position: relative;
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.3));
}

/* FAQ Section */
.faqs-section {
    margin-bottom: 30px;
    padding: 15px;
    border: 1px solid #000000;
    border-radius: 8px;
}

.faqs-section h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 15px;
    text-align: center;
}

details {
    border: 2px solid rgba(0, 0, 0, 0.1);
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.2);
}

summary {
    font-weight: bold;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 10px 0;
    outline: none;
}

details[open] summary {
    margin-bottom: 10px;
    border-bottom: 1px solid #000000;
    padding-bottom: 10px;
}

details p {
    margin-top: 10px;
    line-height: 1.5;
}

/* Loading State */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
    font-size: 1.2rem;
    color: #666;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .container {
        padding: 30px;
    }

    .carousel-container {
        height: 400px;
    }

    .carousel-item {
        min-width: 50%;
        flex: 0 0 50%;
    }

    .carousel-button {
        width: 56px;
        height: 56px;
        font-size: 28px;
    }

    .carousel-button.prev {
        left: 30px;
    }

    .carousel-button.next {
        right: 30px;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero-section {
        padding: 60px 20px;
    }

    .carousel-item {
        min-width: calc(100% / 3);
        flex: 0 0 calc(100% / 3);
    }

    .carousel-button {
        width: 64px;
        height: 64px;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .carousel-button {
        padding: 20px 25px;
        font-size: 24px;
    }

    summary {
        padding: 15px 0;
        font-size: 1.2rem;
    }

    details {
        padding: 20px;
    }
}
