* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f9f9f9;
}
.header {
    background: linear-gradient(135deg, #e02c08 0%, #f97b58 100%);
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

.logo {
    font-size: 1.8rem;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s;
}

.nav-links a:hover {
    transform: scale(1.1);
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
        z-index: 1000;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: auto; /* Adjust height to fit content */
        width: 250px;
        background: rgba(227, 6, 6, 0.8); /* Changed background color */
        color: white; /* Changed font color */
        backdrop-filter: blur(2.5px);
        flex-direction: column;
        padding: 80px 20px;
        gap: 1.5rem;
        transition: 0.3s ease;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        display: flex; /* Show by default */
        visibility: hidden; /* Hide by default */
    }

    .nav-links.active {
        right: 0;
        visibility: visible; /* Show when active */
        z-index: 1001; /* Ensure it is above other content */
    }

    .nav-links.active {
        right: 0;
        display: flex; /* Show when active */
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
}
@media (max-width: 480px) {
    .nav-links {
        width: 200px;
        padding: 60px 15px;
        gap: 1rem;
    }}
.about-hero {
    background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
    padding-top: 4rem;
    padding-bottom: .25rem 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 1.5rem;
}

/* New Image Container Styles */
.hero-image-container {
    max-width: 1200px;
    height: 400px;
    margin: 2rem auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
}

.content-block {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.content-block h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.content-block h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background: #ff6b6b;
}

.content-block p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.contact-info h3 {
    color: #333;
    margin-bottom: 1rem;
}

.contact-item {
    margin-bottom: 0.5rem;
    color: #666;
}

.footer {
    background: #2d3436;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #ddd;
}

@media (max-width: 768px) {
    .hero-image-container {
        height: 300px;
        margin: 2rem 1rem;
    }

    .about-section {
        padding: 1rem;
    }

    .about-hero h1 {
        font-size: 2.5rem;
        padding: 0 1rem;
    }
}