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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

.nav-logo a {
    text-decoration: none;
    color: inherit;
}

.nav-logo h2 {
    color: #2d5a27;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
    transition: color 0.3s ease;
}

.nav-logo a:hover h2 {
    color: #4a7c59;
}

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

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

.nav-link:hover,
.nav-link.active {
    color: #2d5a27;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #2d5a27;
}

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

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2d5a27;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: #2d5a27;
    color: white;
}

.btn-primary:hover {
    background: #1e3d1a;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #2d5a27;
    border-color: #2d5a27;
}

.btn-secondary:hover {
    background: #2d5a27;
    color: white;
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-graphic {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #2d5a27, #4a7c59);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(45, 90, 39, 0.3);
}

.hero-graphic i {
    font-size: 6rem;
    color: white;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d5a27;
    margin-bottom: 3rem;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2d5a27, #4a7c59);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d5a27;
    margin-bottom: 1rem;
}

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

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

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

.industry-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
}

.industry-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2d5a27;
    margin-bottom: 1rem;
}

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

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d5a27, #4a7c59);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta .btn-primary {
    background: white;
    color: #2d5a27;
}

.cta .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    color: #2d5a27;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #2d5a27;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #2d5a27;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #4a7c59;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #ccc;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2d5a27, #4a7c59);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Mission Section */
.mission {
    padding: 80px 0;
    background: white;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d5a27;
    margin-bottom: 2rem;
}

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

.mission-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mission-graphic {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #2d5a27, #4a7c59);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(45, 90, 39, 0.3);
}

.mission-graphic i {
    font-size: 5rem;
    color: white;
}

/* Values Section */
.values {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2d5a27, #4a7c59);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d5a27;
    margin-bottom: 1rem;
}

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

/* Team Section */
.team {
    padding: 80px 0;
    background: white;
}

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

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.member-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #2d5a27, #4a7c59);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.member-avatar i {
    font-size: 2.5rem;
    color: white;
}

.team-member h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d5a27;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #4a7c59;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    color: #666;
    line-height: 1.6;
}

.member-social {
    margin-top: 1rem;
}

.member-social {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.member-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #2d5a27;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.member-social a:hover {
    background: #4a7c59;
}

.member-actions {
    margin: 1rem 0;
}

.member-actions .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

/* Founder Profile Details */
.member-profile {
    margin-top: 1rem;
}

.profile-details {
    margin-top: 1rem;
    text-align: left;
}

.profile-details h4 {
    color: #2d5a27;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.profile-details ul {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.profile-details li {
    margin-bottom: 0.3rem;
    color: #666;
    line-height: 1.5;
}

/* Individual Profile Pages */
.profile-header {
    background: linear-gradient(135deg, #2d5a27, #4a7c59);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.profile-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.profile-avatar i {
    font-size: 3rem;
    color: white;
}

.profile-info h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.profile-title {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.profile-company {
    font-size: 1.1rem;
    opacity: 0.9;
}

.profile-details {
    padding: 80px 0;
    background: white;
}

.profile-sections {
    max-width: 800px;
    margin: 0 auto;
}

.profile-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.profile-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.profile-section h2 {
    color: #2d5a27;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.profile-section h3 {
    color: #2d5a27;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
}

.profile-section h4 {
    color: #2d5a27;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.profile-section blockquote {
    background: #f8f9fa;
    border-left: 4px solid #2d5a27;
    padding: 1rem 1.5rem;
    margin: 1rem 0;
    font-style: italic;
    color: #666;
}

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

.tech-category {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2d5a27;
}

.tech-category h3 {
    margin-bottom: 1rem;
    color: #2d5a27;
}

.tech-category ul {
    margin: 0;
    padding-left: 1.5rem;
}

.tech-category li {
    margin-bottom: 0.5rem;
    color: #666;
}

.research-publications {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.publication {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2d5a27;
}

.publication h4 {
    margin-bottom: 0.8rem;
    color: #2d5a27;
    font-size: 1.1rem;
}

.publication p {
    margin-bottom: 0.5rem;
    color: #666;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #2d5a27;
    color: white;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: #4a7c59;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 90, 39, 0.3);
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d5a27, #4a7c59);
    color: white;
}

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

.stat-item {
    text-align: center;
}

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

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Products Overview */
.products-overview {
    padding: 60px 0 40px;
    background: white;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Product Detail */
.product-detail {
    padding: 80px 0;
    background: white;
}

.product-detail.alt {
    background: #f8f9fa;
}

.product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-detail.alt .product-content {
    grid-template-columns: 1fr 1fr;
}

.product-badge {
    display: inline-block;
    background: linear-gradient(135deg, #2d5a27, #4a7c59);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d5a27;
    margin-bottom: 1.5rem;
}

.product-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.product-features h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d5a27;
    margin-bottom: 1rem;
}

.product-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.product-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #666;
}

.product-features li i {
    color: #2d5a27;
    margin-right: 0.8rem;
    font-size: 0.9rem;
}

.product-pricing {
    margin-bottom: 2rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d5a27;
}

.period {
    font-size: 1rem;
    color: #666;
    margin-left: 0.5rem;
}

.product-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-graphic {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #2d5a27, #4a7c59);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(45, 90, 39, 0.3);
}

.product-graphic i {
    font-size: 6rem;
    color: white;
}

/* Comparison Table */
.comparison {
    padding: 80px 0;
    background: white;
}

.comparison-table {
    overflow-x: auto;
    margin-top: 3rem;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comparison-table th {
    background: #2d5a27;
    color: white;
    padding: 1.5rem 1rem;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    color: #666;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:nth-child(even) {
    background: #f8f9fa;
}

.comparison-table i {
    color: #2d5a27;
    font-size: 1.2rem;
}

/* Pricing Overview */
.pricing-overview {
    padding: 60px 0 40px;
    background: white;
    text-align: center;
}

/* Pricing Cards */
.pricing-cards {
    padding: 80px 0;
    background: #f8f9fa;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 3px solid #2d5a27;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2d5a27, #4a7c59);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d5a27;
    margin-bottom: 1rem;
}

.pricing-description {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.pricing-price {
    margin-bottom: 2rem;
}

.pricing-price .price {
    font-size: 3rem;
    font-weight: 700;
    color: #2d5a27;
}

.pricing-price .period {
    font-size: 1rem;
    color: #666;
    margin-left: 0.5rem;
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #666;
}

.pricing-features li i {
    color: #2d5a27;
    margin-right: 0.8rem;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: white;
}

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

.faq-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #2d5a27;
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d5a27;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Industries Overview */
.industries-overview {
    padding: 60px 0 40px;
    background: white;
    text-align: center;
}

/* Industry Detail */
.industry-detail {
    padding: 80px 0;
    background: white;
}

.industry-detail.alt {
    background: #f8f9fa;
}

.industry-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.industry-detail.alt .industry-content {
    grid-template-columns: 1fr 1fr;
}

.industry-badge {
    display: inline-block;
    background: linear-gradient(135deg, #2d5a27, #4a7c59);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.industry-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d5a27;
    margin-bottom: 1.5rem;
}

.industry-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.industry-features h3,
.industry-challenges h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d5a27;
    margin-bottom: 1rem;
}

.industry-features ul,
.industry-challenges ul {
    list-style: none;
    margin-bottom: 2rem;
}

.industry-features li,
.industry-challenges li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #666;
}

.industry-features li i {
    color: #2d5a27;
    margin-right: 0.8rem;
    font-size: 0.9rem;
}

.industry-challenges li i {
    color: #e74c3c;
    margin-right: 0.8rem;
    font-size: 0.9rem;
}

.industry-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.industry-graphic {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #2d5a27, #4a7c59);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(45, 90, 39, 0.3);
}

.industry-graphic i {
    font-size: 6rem;
    color: white;
}

/* Additional Industries */
.additional-industries {
    padding: 80px 0;
    background: white;
}

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

.industry-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
}

.industry-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2d5a27, #4a7c59);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.industry-icon i {
    font-size: 2rem;
    color: white;
}

.industry-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d5a27;
    margin-bottom: 1rem;
}

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

/* Success Stories */
.success-stories {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.story-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.story-quote {
    color: #2d5a27;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.story-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.story-author strong {
    color: #2d5a27;
    font-weight: 600;
}

.story-author span {
    color: #666;
    display: block;
    font-size: 0.9rem;
}

/* Compliance Page Styles */
.compliance-overview {
    padding: 60px 0 40px;
    background: white;
    text-align: center;
}

.certifications {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.cert-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.cert-card:hover {
    transform: translateY(-5px);
}

.cert-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2d5a27, #4a7c59);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.cert-icon i {
    font-size: 2rem;
    color: white;
}

.cert-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d5a27;
    margin-bottom: 1rem;
}

.cert-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.cert-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-badge.certified {
    background: #d4edda;
    color: #155724;
}

.status-badge.compliant {
    background: #cce5ff;
    color: #004085;
}

.cert-date {
    font-size: 0.8rem;
    color: #666;
}

.data-security {
    padding: 80px 0;
    background: white;
}

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

.security-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border-left: 4px solid #2d5a27;
}

.security-card:hover {
    transform: translateY(-5px);
}

.security-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2d5a27, #4a7c59);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.security-icon i {
    font-size: 2rem;
    color: white;
}

.security-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d5a27;
    margin-bottom: 1rem;
}

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

.privacy-compliance {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.privacy-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.privacy-item:hover {
    transform: translateY(-5px);
}

.privacy-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d5a27;
    margin-bottom: 1rem;
}

.privacy-item p {
    color: #666;
    line-height: 1.6;
}

.industry-compliance {
    padding: 80px 0;
    background: white;
}

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

.industry-compliance-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #2d5a27;
}

.industry-compliance-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d5a27;
    margin-bottom: 1rem;
}

.industry-compliance-item ul {
    list-style: none;
    padding: 0;
}

.industry-compliance-item li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.industry-compliance-item li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5a27;
    font-weight: bold;
}

.compliance-monitoring {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.monitoring-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.monitoring-card:hover {
    transform: translateY(-5px);
}

.monitoring-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2d5a27, #4a7c59);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.monitoring-icon i {
    font-size: 2rem;
    color: white;
}

.monitoring-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d5a27;
    margin-bottom: 1rem;
}

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

.compliance-contact {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.contact-item i {
    color: #2d5a27;
    font-size: 1.2rem;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-content.contact-single-column {
    grid-template-columns: minmax(0, 600px);
    justify-content: center;
    justify-items: center;
    margin: 0 auto;
}

.contact-content.contact-single-column > * {
    width: 100%;
}

.contact-form-container h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2d5a27;
    margin-bottom: 1rem;
}

.contact-form-container p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d5a27;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d5a27;
}

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

.contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2d5a27;
    margin: 0 0 0.5rem;
}

.contact-info.contact-info-centered {
    display: block;
    text-align: center;
    margin: 0 auto;
    max-width: 620px;
}

.contact-info.contact-info-centered h2,
.contact-info.contact-info-centered p {
    text-align: center;
}

.contact-info.contact-info-centered .contact-methods {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.contact-info.contact-info-centered .contact-method {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}

.contact-info.contact-info-centered .contact-icon {
    margin-right: 0;
    margin-bottom: 1rem;
}

.contact-info.contact-info-centered .contact-details {
    text-align: center;
}

.contact-info p {
    color: #666;
    margin: 0 0 2rem;
    line-height: 1.6;
}

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

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-2px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2d5a27, #4a7c59);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d5a27;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #333;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.contact-details span {
    color: #666;
    font-size: 0.9rem;
}

.social-contact {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
}

.social-contact h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d5a27;
    margin-bottom: 1rem;
}

.social-contact .social-links {
    display: flex;
    gap: 1rem;
}

.social-contact .social-links a {
    width: 45px;
    height: 45px;
    background: #2d5a27;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-contact .social-links a:hover {
    background: #4a7c59;
}

/* Contact FAQ */
.contact-faq {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-graphic {
        width: 200px;
        height: 200px;
    }

    .hero-graphic i {
        font-size: 4rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .mission-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .mission-text h2 {
        font-size: 2rem;
    }

    .mission-graphic {
        width: 200px;
        height: 200px;
    }

    .mission-graphic i {
        font-size: 4rem;
    }

    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-number {
        font-size: 2rem;
    }

    .product-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .product-text h2 {
        font-size: 2rem;
    }

    .product-graphic {
        width: 250px;
        height: 250px;
    }

    .product-graphic i {
        font-size: 4rem;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    .pricing-price .price {
        font-size: 2.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .industry-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .industry-text h2 {
        font-size: 2rem;
    }

    .industry-graphic {
        width: 250px;
        height: 250px;
    }

    .industry-graphic i {
        font-size: 4rem;
    }

    .industries-grid,
    .stories-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-form-container h2,
    .contact-info h2 {
        font-size: 1.8rem;
    }

    .certifications-grid,
    .security-features,
    .privacy-grid,
    .industry-grid,
    .monitoring-features {
        grid-template-columns: 1fr;
    }

    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

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

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .feature-card,
    .industry-card {
        padding: 1.5rem;
    }
}
