/* Common Styles */
body {
    padding: 0;
    margin: 0;
    font-family: Georgia, 'Times New Roman', Times, serif;
    scroll-behavior: smooth;
}

/* Header/Navbar Styles */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2196F3;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.brand-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin: 0;
}

#logo {
    border-radius: 50%;
    border: 2px solid white;
    transition: transform 0.5s ease;
}

#logo:hover {
    transform: rotate(10deg);
}

/* Navigation Styles */
.w3-bar.w3-blue {
    background-color: #2196F3 !important;
}

.w3-bar a.w3-button {
    color: white !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.w3-bar a.w3-button:hover {
    background-color: #1a6fc9 !important;
    transform: scale(1.05);
}

.w3-bar a.w3-button.active {
    background-color: white !important;
    color: #2196F3 !important;
}

/* Dropdown Menu */
.w3-dropdown-content {
    background-color: #2196F3 !important;
}

.w3-dropdown-content a {
    color: white !important;
}

.w3-dropdown-content a:hover {
    background-color: #1a6fc9 !important;
}

/* Main Content */
#main-container {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer Styles */
footer {
    background-color: #2C3E50;
    color: white;
    padding: 40px 0;
    margin-top: 30px;
    font-family: Arial, sans-serif;
}

.footer-content {
    text-align: center;
    margin-bottom: 30px;
}

.footer-content h3 {
    font-size: 28px;
    font-weight: bold;
    color: #E67E22;
}

.footer-content p {
    font-size: 16px;
    color: #BDC3C7;
}

.footer-links {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-links a {
    color: white;
    font-size: 24px;
    margin: 0 15px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #E67E22;
    transform: scale(1.2);
}

.footer-info {
    text-align: center;
    margin-top: 20px;
}

.footer-info p {
    font-size: 16px;
    color: #BDC3C7;
    margin: 5px 0;
}

.footer-copyright {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

.footer-copyright p {
    color: #BDC3C7;
}

.footer-copyright a {
    color: #E67E22;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #f1c40f;
}

/* Responsive Styles */
@media (max-width: 600px) {
    .w3-third, .w3-rest {
        width: 100% !important;
    }
    
    .header-container {
        flex-direction: column;
        text-align: center;
    }
    
    .brand-name {
        margin-bottom: 10px;
    }
}