/* General Reset */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    width: 100%;
}

/* Wrapper */
.wrapper {
    width: 100%;
}

/* Header */
header {
    background-color: #ffffff;
    color: white;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
}

.menu ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.menu ul li a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-size: 1rem;
}

.menu-toggle {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* About Section */
.about {
    margin-top: 80px;
    padding: 2rem 1rem;
    text-align: center;
}

.about h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.about p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 2rem 1rem;
    text-align: center;
    background-color: #f9f9f9;
}

.contact h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

.contact p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: #333;
}

.contact-item i {
    font-size: 1.2rem;
    color: #666;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem 0;
}

footer a {
    color: rgb(173, 135, 235);
    text-decoration: none;
    margin: 0 0.5rem;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu ul {
        flex-direction: column;
        display: none;
        background: #333;
        padding: 1rem;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
    }

    .menu ul.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .about h1, .contact h1 {
        font-size: 1.5rem;
    }

    .about p, .contact p {
        font-size: 0.9rem;
    }

    .contact-item {
        font-size: 0.9rem;
    }
}
