:root {
    --primary-yellow: #FFD700;
    --secondary-yellow: #FFEB99;
    --accent-yellow: #FFC000;
    --dark-text: #333333;
    --light-text: #FFFFFF;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #FFFDF0;
    color: var(--dark-text);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
header {
    background-color: var(--primary-yellow);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.site-logo {
    height: 80px;
    margin-right: 20px;
    vertical-align: middle;
}

.logo { /* This class is used for the <a> tag wrapping the logo image AND text if any */
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--dark-text);
    text-decoration: none;
}

.contact-info {
    margin-left: 1rem; /* Provides spacing from nav-links if they are short */
}

.contact-info p {
    margin: 0;
    font-size: 0.9rem;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--light-text);
}

.social-icons {
    display: flex;
    list-style: none;
}

.social-icons li {
    margin-left: 1rem;
}

.social-icons a {
    color: var(--dark-text);
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--light-text);
}

/* Common Section Title */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--dark-text);
}

/* Footer Styles */
footer {
    background-color: var(--dark-text);
    color: var(--light-text);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section p strong {
    color: var(--primary-yellow);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    display: block;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #555;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #aaa;
}

/* WhatsApp Contact Button */
.whatsapp-contact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-family: Arial, sans-serif;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    z-index: 1000;
}
.whatsapp-contact:hover {
    background-color: #128C7E;
}
.whatsapp-contact img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--dark-text);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Common Mobile Responsiveness */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-container {
        flex-wrap: wrap;
    }
    
    .logo-container {
        justify-content: space-between;
        width: 100%;
    }
    
    .site-logo {
        height: 50px;
    }

    .logo {
        font-size: 1.5rem;
    }

    .contact-info {
        display: none;
    }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        margin-top: 0;
    }
    
    .nav-links.active {
        max-height: 300px; 
        margin-top: 1rem;
    }
    
    .nav-links li {
        margin: 0;
        text-align: center;
        padding: 0.5rem 0;
    }
    
    .social-icons {
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }
    
    .social-icons.active {
        max-height: 50px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}