/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

/* Header Section */
.header {
    background-color: #333;
    color: white;
    padding: 20px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: 0 auto;
}

.header .logo {
    font-size: 24px;
    font-weight: bold;
}

.header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.header nav ul li {
    display: inline;
}

.header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

/* Slider Section */
.slider {
    width: 100%;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 1s ease;
}

.slide {
    width: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: auto;
}

.caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
}

.caption h2 {
    font-size: 40px;
    margin-bottom: 10px;
}

.caption p {
    font-size: 20px;
}

/* About Section */
.about {
    background-color: #fff;
    padding: 40px 0;
    text-align: center;
}

.about h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

/* Footer Section */
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

.container {
    width: 80%;
    margin: 0 auto;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .header .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .header nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .caption h2 {
        font-size: 28px;
    }

    .caption p {
        font-size: 16px;
    }

    .about h2 {
        font-size: 28px;
    }

    .about p {
        font-size: 16px;
    }
}
