/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5; /* Light gray background */
    color: #333;
    line-height: 1.6;
}

/* Header and Navigation */
header {
    background-color: #E8F0E5; /* Light green background matching logo */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2E6A3F; /* Dark green from logo */
}

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

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #2E6A3F; /* Dark green from logo */
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #7fb069; /* Light green accent */
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Main content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Page header with image - professional approach */
.page-header {
    background: white;
    border-bottom: 2px solid #2E6A3F;
    margin-bottom: 2rem;
    overflow: hidden;
}

.header-image {
    width: 100%;
    display: flex;
    justify-content: center;
}

.header-hero-image {
    width: 100%;
    max-width: 1100px;
    height: auto;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.header-content {
    padding: 3rem 2rem 2rem;
    text-align: center;
    background: white;
}

.page-header h1 {
    color: #2E6A3F;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Features section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #E8F0E5; /* Light green accent */
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    margin-bottom: 1.5rem;
    color: #2E6A3F;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-card h3 {
    color: #2E6A3F; /* Dark green from logo */
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* About preview section */
.about-preview {
    background-color: #f8f9fa;
    padding: 4rem 0;
    margin-top: 4rem;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.about-content h2 {
    color: #2E6A3F;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.about-content p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.learn-more-btn {
    display: inline-block;
    background-color: #2E6A3F;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.learn-more-btn:hover {
    background-color: #1e4a2a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 106, 63, 0.3);
}

/* Footer */
footer {
    background-color: #2E6A3F; /* Dark green from logo */
    color: #fff;
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: #E8F0E5; /* Light green accent */
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #E8F0E5; /* Light green accent */
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 1rem 0;
}

.footer-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
}

.footer-social-btn.instagram-btn {
    background-color: transparent;
    color: white;
}

.footer-social-btn.instagram-btn:hover {
    color: #E8F0E5;
    transform: translateY(-1px);
}

.footer-social-btn.linkedin-btn {
    background-color: transparent;
    color: white;
}

.footer-social-btn.linkedin-btn:hover {
    color: #E8F0E5;
    transform: translateY(-1px);
}

.footer-copyright {
    text-align: center;
    opacity: 0.9;
    font-size: 0.9rem;
}

.footer-accent {
    width: 60px;
    height: 3px;
    background-color: #E8F0E5; /* Light green accent */
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

/* Page content styles */
.page-content {
    background-color: #fff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

/* Tech article blocks */
.tech-article {
    background-color: #f9f9f9;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
    border-left: 4px solid #E8F0E5;
}

.tech-article h2 {
    color: #2E6A3F;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.tech-article p {
    line-height: 1.6;
    color: #555;
}

/* Contact message */
.contact-message {
    text-align: center;
    margin: 2rem 0;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 10px;
    border-left: 4px solid #E8F0E5;
}

.contact-message p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.contact-message p:last-child {
    margin-bottom: 0;
    font-style: italic;
    color: #666;
}

/* Contact buttons */
.contact-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
}

.contact-btn.instagram-btn {
    background-color: transparent;
    color: #2E6A3F;
}

.contact-btn.instagram-btn:hover {
    color: #1e4a2a;
    transform: translateY(-2px);
}

.contact-btn.linkedin-btn {
    background-color: transparent;
    color: #2E6A3F;
}

.contact-btn.linkedin-btn:hover {
    color: #1e4a2a;
    transform: translateY(-2px);
}

.page-content h1 {
    color: #2E6A3F; /* Dark green from logo */
    margin-bottom: 2rem;
    font-size: 2.5rem;
    border-bottom: 3px solid #E8F0E5; /* Light green accent */
    padding-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.page-content h2 {
    color: #2E6A3F; /* Dark green from logo */
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

.page-content h3 {
    color: #2E6A3F; /* Dark green from logo */
    margin: 1.5rem 0 0.5rem;
    font-size: 1.4rem;
}

.page-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.page-content ul, .page-content ol {
    margin: 1rem 0 1rem 2rem;
}

.page-content li {
    margin-bottom: 0.5rem;
}

/* Contact form styles */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2E6A3F; /* Dark green from logo */
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #E8F0E5; /* Light green accent */
}

.btn {
    background-color: #2E6A3F; /* Dark green from logo */
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #1e4a2a; /* Darker green */
}

/* Archive page styles */
.archive-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.archive-section:last-child {
    border-bottom: none;
}

.archive-link {
    color: #2E6A3F; /* Dark green from logo */
    text-decoration: none;
    font-weight: 500;
}

.archive-link:hover {
    color: #E8F0E5; /* Light green */
    text-decoration: underline;
}

/* Contact page styles */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-method {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #E8F0E5; /* Light green accent */
}

.contact-method h3 {
    color: #2E6A3F; /* Dark green from logo */
    margin-bottom: 1rem;
}

.office-location {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    border-left: 4px solid #2E6A3F; /* Dark green accent */
}

.office-location h3 {
    color: #2E6A3F; /* Dark green from logo */
    margin-bottom: 1rem;
}

.faq-section h3 {
    color: #2E6A3F; /* Dark green from logo */
    margin: 1.5rem 0 0.5rem;
    font-size: 1.2rem;
}

.faq-section p {
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 2px solid #E8F0E5; /* Light green accent */
}

.social-link {
    color: #2E6A3F; /* Dark green from logo */
    text-decoration: none;
    font-weight: 500;
}

.social-link:hover {
    color: #E8F0E5; /* Light green */
    text-decoration: underline;
}

/* Form select styling */
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

.form-group select:focus {
    outline: none;
    border-color: #E8F0E5; /* Light green accent */
}

/* Responsive design */
@media (max-width: 768px) {
    /* Header and navigation */
    header {
        padding: 1rem;
    }
    
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-links a {
        font-size: 0.95rem;
    }
    
    /* Page header mobile */
    .page-header h1 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .header-content {
        padding: 2rem 1rem 1.5rem;
    }
    
    .header-image {
        padding: 0 1rem;
    }
    
    /* Main content mobile */
    .main-content {
        padding: 2rem 1rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .content-card {
        padding: 1.5rem;
    }
    
    .content-card h3 {
        font-size: 1.2rem;
    }
    
    .content-card p {
        font-size: 0.9rem;
    }
    
    /* About preview section mobile */
    .about-preview {
        padding: 2rem 0;
    }
    
    .about-content {
        padding: 0 1rem;
    }
    
    .about-content h2 {
        font-size: 1.6rem;
    }
    
    .about-content p {
        font-size: 0.95rem;
    }
    
    .learn-more-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Page content mobile */
    .page-content {
        padding: 2rem 1rem;
    }
    
    .page-content h1 {
        font-size: 2rem;
    }
    
    .page-content h2 {
        font-size: 1.5rem;
    }
    
    /* Tech articles mobile */
    .tech-article {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .tech-article h2 {
        font-size: 1.3rem;
    }
    
    .tech-article p {
        font-size: 0.9rem;
    }
    
    /* Image sections mobile */
    .about-image-section,
    .tech-image-section {
        padding: 1.5rem;
        margin: 2rem 0;
        max-width: 100%;
    }
    
    .about-hero-image,
    .tech-hero-image {
        max-width: 100%;
    }
    
    /* Contact page mobile */
    .contact-message {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .contact-buttons {
        gap: 1.5rem;
    }
    
    .contact-btn {
        width: 50px;
        height: 50px;
    }
    
    /* Footer mobile */
    .footer-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-content {
        padding: 0 1rem;
    }
    
    .footer-social {
        gap: 1.5rem;
    }
    
    .footer-social-btn {
        width: 35px;
        height: 35px;
    }
}

/* Clean about page styles */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
}

.about-content h2 {
    color: #2E6A3F;
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.about-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* Standardized image styling for all pages */
.about-image-section,
.tech-image-section {
    margin: 3rem auto;
    text-align: center;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    max-width: 1200px;
    width: 100%;
}

.about-hero-image,
.tech-hero-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.image-placeholder {
    background: #e9ecef;
    border: 2px dashed #6c757d;
    border-radius: 6px;
    padding: 3rem 2rem;
    text-align: center;
    color: #6c757d;
    margin-bottom: 1rem;
}

.image-placeholder p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.image-placeholder p:first-child {
    font-weight: 600;
    font-size: 1.2rem;
}

.image-caption {
    color: #666;
    font-style: italic;
    font-size: 0.95rem;
    margin: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 0 1rem;
}

/* Clean main content styles */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: white;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.content-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    text-align: center;
    transition: all 0.3s ease;
}

.content-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #2E6A3F;
}

.content-card h3 {
    color: #2E6A3F;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.content-card p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}
