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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

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

/* Header & Navigation */
header {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #2c5f2d;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

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

.nav-links a:hover {
    color: #2c5f2d;
}

.cta-button {
    background: #2c5f2d;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #234a24;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-size: 48px;
    color: #2c5f2d;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: #555;
    margin-bottom: 30px;
}

.value-props {
    list-style: none;
    margin: 30px 0;
}

.value-props li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.value-props li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: bold;
    font-size: 20px;
}

/* Industries Section */
.industries {
    background: #f8f9fa;
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: #2c5f2d;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

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

.industry-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.industry-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s;
    cursor: pointer;
    height: 100%;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.industry-card h3 {
    color: #2c5f2d;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
}

.industry-card p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
    margin: 0;
}

.industry-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

/* Services Section */
.services {
    padding: 80px 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    padding: 30px;
    border: 2px solid #e8f5e9;
    border-radius: 8px;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: #2c5f2d;
    box-shadow: 0 5px 20px rgba(44, 95, 45, 0.1);
}

.service-card h3 {
    color: #2c5f2d;
    margin-bottom: 15px;
    font-size: 24px;
}

.price-tag {
    font-size: 28px;
    color: #2c5f2d;
    font-weight: bold;
    margin: 20px 0;
}

/* Testimonial Section */
.testimonial {
    background: #f8f9fa;
    padding: 80px 0;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-text {
    font-size: 24px;
    font-style: italic;
    color: #555;
    margin-bottom: 30px;
}

.testimonial-author {
    font-weight: bold;
    color: #333;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #c8e6c9 0%, #e8f5e9 100%);
    padding: 80px 0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-button {
    background: #2c5f2d;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

.submit-button:hover {
    background: #234a24;
}

/* Thank You Message */
.thank-you {
    display: none;
    text-align: center;
    padding: 40px;
    background: #e8f5e9;
    border-radius: 8px;
}

.thank-you h2 {
    color: #2c5f2d;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background: #2c5f2d;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

/* Industry Landing Page Styles */
.industry-hero {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 60px 0;
}

.industry-hero h1 {
    font-size: 42px;
    color: #2c5f2d;
    margin-bottom: 20px;
}

.benefits-section {
    padding: 60px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
}

.benefit-card h3 {
    color: #2c5f2d;
    margin-bottom: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
    }
}