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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #4a4a4a;
    background-color: #faf8f5;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #e8f5e9 0%, #f3e5f5 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: #66bb6a;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo:hover {
    color: #43a047;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

nav a:hover {
    color: #66bb6a;
    background-color: rgba(102, 187, 106, 0.1);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background-color: #66bb6a;
    border-radius: 3px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #c8e6c9 0%, #e1bee7 50%, #f8bbd9 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.page-header-content h1 {
    font-size: 3rem;
    color: #2e7d32;
    margin-bottom: 0.5rem;
}

.page-header-content p {
    font-size: 1.2rem;
    color: #555;
}

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

/* About Page Styles */
.about-full {
    padding: 5rem 0;
    background-color: #fff;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #2e7d32;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-image-large {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.about-image-large img {
    width: 100%;
    height: auto;
    display: block;
}

.values-section {
    margin-bottom: 5rem;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2e7d32;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: linear-gradient(135deg, #fff9f0 0%, #fff5f8 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s;
    border: 2px solid #f0f0f0;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: #2e7d32;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

.team-section {
    margin-bottom: 5rem;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2e7d32;
    margin-bottom: 1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: #faf8f5;
    border-radius: 20px;
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 5px solid #c8e6c9;
}

.team-member h3 {
    color: #2e7d32;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: #888;
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    background: linear-gradient(135deg, #e8f5e9 0%, #f3e5f5 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #66bb6a;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 1.1rem;
}

/* Contact Page Styles */
.contact-full {
    padding: 5rem 0;
    background-color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.contact-info-section h2 {
    font-size: 2.5rem;
    color: #2e7d32;
    margin-bottom: 1.5rem;
}

.contact-info-section > p {
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #faf8f5;
    border-radius: 15px;
    transition: transform 0.3s;
}

.contact-method:hover {
    transform: translateX(5px);
}

.contact-icon {
    font-size: 2.5rem;
}

.contact-method h3 {
    color: #2e7d32;
    margin-bottom: 0.5rem;
}

.contact-method p {
    color: #666;
    margin-bottom: 0.25rem;
}

.contact-method a {
    color: #66bb6a;
    text-decoration: none;
    font-weight: 600;
}

.contact-method small {
    color: #999;
    font-size: 0.9rem;
}

.service-area {
    background: linear-gradient(135deg, #fff9f0 0%, #fff5f8 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #66bb6a;
}

.service-area h3 {
    color: #2e7d32;
    margin-bottom: 1rem;
}

.service-area ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.service-area li {
    color: #666;
    padding: 0.3rem 0;
}

.service-area li:before {
    content: "✓ ";
    color: #66bb6a;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Form Styles */
.form-container {
    background: linear-gradient(135deg, #e8f5e9 0%, #f3e5f5 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-container h2 {
    color: #2e7d32;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.form-container > p {
    color: #666;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

label {
    font-weight: 600;
    color: #555;
}

input, select, textarea {
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #66bb6a;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

.checkbox-group label {
    font-weight: normal;
    font-size: 0.95rem;
}

.checkbox-group a {
    color: #66bb6a;
}

.submit-btn {
    background: linear-gradient(135deg, #66bb6a 0%, #81c784 100%);
    color: white;
    padding: 1.2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 187, 106, 0.4);
}

.map-section {
    margin-top: 5rem;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2e7d32;
    margin-bottom: 2rem;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* Privacy Policy Styles */
.privacy-content {
    padding: 5rem 0;
    background-color: #fff;
}

.privacy-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-intro {
    background: linear-gradient(135deg, #e8f5e9 0%, #f3e5f5 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    border-left: 5px solid #66bb6a;
}

.privacy-intro p {
    color: #555;
    line-height: 1.8;
}

.privacy-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #faf8f5;
    border-radius: 15px;
}

.privacy-section h2 {
    color: #2e7d32;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #c8e6c9;
}

.privacy-section h3 {
    color: #43a047;
    margin: 1.5rem 0 1rem;
    font-size: 1.3rem;
}

.privacy-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.privacy-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.privacy-section li {
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.privacy-section a {
    color: #66bb6a;
    text-decoration: none;
}

.privacy-section a:hover {
    text-decoration: underline;
}

.contact-details {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 1.5rem;
}

.contact-details p {
    margin-bottom: 1rem;
}

.privacy-notice {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
    border-left: 5px solid #ff9800;
}

.privacy-notice p {
    color: #555;
    font-weight: 500;
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.footer-section h3 {
    color: #c8e6c9;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-section p {
    color: #e8f5e9;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #e8f5e9;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #c8e6c9;
}

.footer-link {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-section,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .service-area ul {
        grid-template-columns: 1fr;
    }
    
    .page-header-content h1 {
        font-size: 2rem;
    }
    
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Accessibility */
:focus {
    outline: 3px solid #66bb6a;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    header, footer, .mobile-menu {
        display: none;
    }
}