* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Navbar Styling */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: orange;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.title {
    font-size: 22px;
    font-weight: bold;
    color: white;
    text-align: center;
    flex-grow: 1;
}

.nav-links {
    display: flex;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 18px;
    margin: 0 10px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.nav-links a:hover {
    color: #2c09ba;
}

.nav-links a i {
    margin-right: 8px;
}

/* Mobile Menu Button */
.menu-button {
    display: none;
    background: white;
    color: orange;
    border: 2px solid orange;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background: orange;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 10px;
    width: 200px;
}

.mobile-menu a {
    display: block;
    padding: 10px;
    text-align: left;
    text-decoration: none;
    color: white;
    font-weight: bold;
}

#menu-toggle {
    display: none;
}

#menu-toggle:checked ~ .mobile-menu {
    display: flex;
}

.mobile-menu a:hover {
    color: rgb(66, 8, 193);
}

/* Page Content Section */
.page-content {
    margin-top: 100px;
    padding: 40px;
    text-align: center;
}

.page-content h2 {
    font-size: 32px;
    color: #ff6600;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-content p {
    font-size: 18px;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Social Media Section */
.social-media-section {
    text-align: center;
    background: rgba(245, 241, 241, 0.842);
    padding: 20px 0;
    margin-top: 20px;
    margin-bottom: 40px;
}

.social-media-title {
    font-size: 24px;
    font-weight: bold;
    color: #ff6600;
    margin-bottom: 10px;
}

.social-media-container {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-media-container a {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    transition: transform 0.3s;
}

.social-media-container a:hover {
    transform: scale(1.1);
}

.social-media-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .menu-button {
        display: block;
    }
    .social-media-container a {
        width: 40px;
        height: 40px;
    }
}

/* Footer */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: orange;
    color: white;
    text-align: center;
    padding: 10px 0;
    font-weight: bold;
}

.info-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background-color:wheat;
}

.info-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    max-width: 900px;
    background:whitesmoke;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.info-container img {
    width: 250px;
    height: 250px;
    margin-top: 40px;
    object-fit: cover;
    border-radius: 10px;
}

.info-text {
    max-width: 500px;
}

.info-text h2 {
    font-size: 28px;
    color: #ff6600;
    margin-bottom: 10px;
}

.info-text p {
    font-size: 21px;
    color: #333;
    line-height: 1.6;
    text-align: left;
}

@media (max-width: 768px) {
    .info-container {
        flex-direction: column;
        text-align: center;
    }
    
    .info-container img {
        width: 100%;
        height: auto;
    }
}