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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #c90901;
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.fixed-header h1 {
    color: white;
    font-weight: bold;
    font-size: 24px;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    margin-top: 60px;
    overflow: hidden;
    height: 400px;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-text {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.hero-text h2 {
    color: white;
    font-size: 48px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

/* Welcome Section */
.welcome {
    background-color: white;
    padding: 60px 0;
}

.welcome h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.welcome p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #666;
}

/* Contact Options */
.contact-options {
    display: flex;
    justify-content: space-around;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-item {
    display: block;
    text-align: center;
    flex: 1;
    min-width: 200px;
    padding: 25px 20px;
    border: 2px solid #c90901;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.contact-item strong {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
    color: #333;
}

.contact-item span {
    color: #c90901;
    font-size: 16px;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background-color: #f9f9f9;
    border: 3px solid #c90901;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
    overflow: hidden;
}

.contact-form h3 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: Arial, sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c90901;
}

.contact-form button {
    background-color: #c90901;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #a00d25;
}

.success-message {
    text-align: center;
    padding: 40px 20px;
}

.success-message p {
    font-size: 22px;
    color: #c90901;
    font-weight: bold;
    margin: 0;
}

/* Carousel Section */
.carousel-section {
    background-color: #252525;
    padding: 40px 0 0 0;
}

.carousel-section .container {
    padding-bottom: 15px;
}

.carousel-section h2 {
    font-size: 32px;
    text-align: center;
    color: #fff;
}

.carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #252525;
    padding: 20px 0 30px 0;
}

.carousel-track {
    display: flex;
    gap: 20px;
    will-change: transform;
}

.carousel-image {
    flex-shrink: 0;
    width: calc((100% - 80px) / 5);
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}

/* Footer */
.footer {
    background-color: #000;
    padding: 20px 0;
    color: white;
}

.footer-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-link {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #c90901;
}

.footer-link .icon {
    width: 28px;
    height: 28px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .fixed-header h1 {
        font-size: 18px;
    }

    .hero {
        margin-top: 50px;
        height: 300px;
    }

    .hero-text h2 {
        font-size: 32px;
    }

    .welcome h2 {
        font-size: 24px;
    }

    .welcome p {
        font-size: 16px;
    }

    .contact-options {
        flex-direction: column;
        align-items: center;
    }

    .contact-item {
        width: 100%;
        margin-bottom: 20px;
    }

    .contact-form {
        padding: 20px;
    }

    .carousel-image {
        width: calc((100% - 40px) / 3);
    }

    .carousel-section h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 250px;
    }

    .hero-text h2 {
        font-size: 24px;
    }

    .welcome {
        padding: 40px 0;
    }

    .carousel-image {
        width: calc((100% - 20px) / 2);
    }

    .carousel-section {
        padding: 40px 0 0 0;
    }
}
