/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

body {
    display: flex;
    flex-direction: column;
    background-color: #f5f5f5;
}

main {
    flex: 1;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: #1a472a;
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #3498db;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a472a 0%, #2d6a3e 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    animation: slideInDown 0.8s ease;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: slideInUp 0.8s ease;
}

/* Services Section */
.services-section {
    padding: 60px 20px;
    background-color: white;
    margin-bottom: 2rem;
}

.services-section h2,
.experience-section h2,
.location-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a472a;
}

.services-list,
.experience-list {
    max-width: 800px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.services-list li,
.experience-list li {
    padding: 10px 15px;
    background-color: #f9f9f9;
    border-left: 4px solid #2d6a3e;
    line-height: 1.6;
}

/* Experience Section */
.experience-section {
    padding: 60px 20px;
    background-color: #f5f5f5;
}

.experience-section p {
    text-align: center;
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Challenge Section */
.challenge-section {
    padding: 60px 20px;
    background-color: white;
}

.section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.section-box {
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 5px;
    border-left: 5px solid #2d6a3e;
}

.section-box h3 {
    color: #1a472a;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.section-box p {
    line-height: 1.8;
}

/* Location Section */
.location-section {
    padding: 60px 20px;
    background-color: #f5f5f5;
}

.location-section p {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Content Section */
.content-section {
    min-height: calc(100vh - 200px);
    padding: 60px 20px;
    background-color: white;
}

.content-section h1 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a472a;
    text-align: center;
}

/* About Boxes */
.about-box {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 5px;
    border-left: 5px solid #2d6a3e;
}

.about-box h3 {
    color: #1a472a;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.about-box p {
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.about-box ul {
    margin-left: 2rem;
    line-height: 1.8;
}

.about-box li {
    margin-bottom: 0.5rem;
}

/* Blog Posts */
.blog-posts {
    max-width: 900px;
    margin: 0 auto;
}

.blog-post {
    background: white;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #2d6a3e;
}

.blog-post h2 {
    color: #1a472a;
    margin-bottom: 0.5rem;
}

.post-date {
    color: #666;
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.blog-post p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.blog-post ul,
.blog-post ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.blog-post li {
    margin-bottom: 0.5rem;
}

.read-more {
    color: #2d6a3e;
    text-decoration: none;
    font-weight: bold;
}

.read-more:hover {
    text-decoration: underline;
}

/* Contact Info and Form */
.contact-info {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 5px;
    border-left: 5px solid #2d6a3e;
}

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

.contact-info p {
    margin-bottom: 10px;
    line-height: 1.8;
}

.contact-info a {
    color: #2d6a3e;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-content h3 {
    color: #1a472a;
    margin-bottom: 2rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #1a472a;
}

.required {
    color: #e74c3c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d6a3e;
    box-shadow: 0 0 5px rgba(45, 106, 62, 0.3);
}

.submit-btn {
    background-color: #1a472a;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #2d6a3e;
}

/* Footer */
footer {
    background-color: #1a472a;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: auto;
}

footer p {
    margin-bottom: 0.5rem;
}

footer a {
    color: #a8d5ba;
    text-decoration: none;
}

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

/* Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        flex-direction: column;
        background-color: #1a472a;
        width: 100%;
        text-align: center;
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 1rem 0;
        border-bottom: 1px solid #2d6a3e;
    }

    .hamburger {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero {
        padding: 60px 20px;
    }

    .services-section h2,
    .experience-section h2,
    .location-section h2,
    .content-section h1 {
        font-size: 1.8rem;
    }

    .services-list,
    .experience-list {
        grid-template-columns: 1fr;
    }

    .section-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .nav-logo a {
        font-size: 1.2rem;
    }

    .services-section h2,
    .experience-section h2,
    .location-section h2,
    .content-section h1 {
        font-size: 1.5rem;
    }

    .about-box,
    .blog-post,
    .contact-info,
    .contact-form,
    .section-box {
        padding: 1.5rem;
    }

    .blog-post {
        padding: 1.5rem;
    }

    .services-list li,
    .experience-list li {
        padding: 8px 12px;
        font-size: 0.95rem;
    }
}
