/* Reset and 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: #2d3748;
    background-color: #f7fafc;
}

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

/* Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    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 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2d3748;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo i {
    color: #38a169;
}

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

.nav-menu a {
    color: #2d3748;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #38a169;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2d3748;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #1a202c;
    max-width: 800px;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    color: #1a202c;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-title i {
    color: #38a169;
    font-size: 3rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #2d3748;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #38a169;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(56, 161, 105, 0.3);
}

.cta-button:hover {
    background: #2f855a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 161, 105, 0.4);
}

.cta-button.large {
    font-size: 1.1rem;
    padding: 20px 40px;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2d3748;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-title i {
    color: #38a169;
}

/* Company Info Section */
.company-info {
    background: white;
    margin-top: -100px;
    position: relative;
    z-index: 3;
}

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

.info-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.info-card i {
    font-size: 3rem;
    color: #38a169;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2d3748;
}

/* Services Section */
.services {
    background: #f7fafc;
}

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    border-color: #38a169;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 3rem;
    color: #38a169;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2d3748;
}

/* About Preview Section */
.about-preview {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-text h2 i {
    color: #38a169;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #4a5568;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #38a169;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #2f855a;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: #f7fafc;
    border-radius: 12px;
    border-left: 4px solid #38a169;
}

.stat i {
    font-size: 2rem;
    color: #38a169;
    margin-bottom: 10px;
    display: block;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #2d3748;
}

.stat-label {
    color: #4a5568;
    font-size: 0.9rem;
}

/* Reviews Section */
.reviews {
    background: #f7fafc;
}

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

.review-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stars {
    margin-bottom: 20px;
}

.stars i {
    color: #f6ad55;
    font-size: 1.2rem;
}

.review-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: #4a5568;
    font-size: 1.1rem;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2d3748;
    font-weight: 600;
}

.reviewer i {
    font-size: 1.5rem;
    color: #38a169;
}

/* Blog Preview Section */
.blog-preview {
    background: white;
}

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

.blog-card {
    background: #f7fafc;
    padding: 40px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid #38a169;
}

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

.blog-icon {
    font-size: 2.5rem;
    color: #38a169;
    margin-bottom: 20px;
}

.blog-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2d3748;
}

.blog-card p {
    color: #4a5568;
    margin-bottom: 20px;
}

.blog-cta {
    text-align: center;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.cta-content h2 i {
    color: #68d391;
}

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

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

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

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section h3 i {
    color: #68d391;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #e2e8f0;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

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

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

.footer-section p {
    color: #cbd5e0;
    margin-bottom: 10px;
}

.footer-section p i {
    color: #68d391;
    margin-right: 8px;
    width: 16px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #4a5568;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #68d391;
    color: #2d3748;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #4a5568;
    color: #cbd5e0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d3748;
    color: white;
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-text i {
    color: #f6ad55;
    font-size: 1.5rem;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #38a169;
    color: white;
}

.cookie-btn.necessary {
    background: #4a5568;
    color: white;
}

.cookie-btn.settings {
    background: transparent;
    color: white;
    border: 1px solid #cbd5e0;
}

.cookie-btn:hover {
    opacity: 0.8;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10001;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-content h3 {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2d3748;
}

.cookie-modal-content h3 i {
    color: #38a169;
}

.cookie-option {
    margin-bottom: 25px;
    padding: 20px;
    background: #f7fafc;
    border-radius: 8px;
}

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: 600;
    color: #2d3748;
}

.cookie-option input[type="checkbox"] {
    margin-top: 2px;
}

.cookie-option p {
    margin-top: 10px;
    margin-left: 30px;
    color: #4a5568;
    font-size: 0.9rem;
}

.cookie-modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
}

/* Forms */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2d3748;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #38a169;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #2d3748;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.page-header h1 i {
    color: #38a169;
}

.page-header p {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info h2 i {
    color: #38a169;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: #f7fafc;
    border-radius: 12px;
    border-left: 4px solid #38a169;
}

.contact-item i {
    font-size: 2rem;
    color: #38a169;
    margin-top: 5px;
    min-width: 40px;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #2d3748;
}

.contact-item p {
    color: #4a5568;
    line-height: 1.6;
}

.contact-form {
    background: #f7fafc;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-form h2 i {
    color: #38a169;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: auto;
}

.checkbox-label a {
    color: #38a169;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: #f7fafc;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2d3748;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.map-section h2 i {
    color: #38a169;
}

.map-placeholder {
    background: #e2e8f0;
    border-radius: 12px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #cbd5e0;
}

.map-info {
    text-align: center;
    color: #4a5568;
}

.map-info i {
    font-size: 4rem;
    color: #38a169;
    margin-bottom: 20px;
}

.map-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #2d3748;
}

/* Thank You Page Styles */
.thank-you-section {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 30px;
}

.thank-you-icon i {
    font-size: 5rem;
    color: #38a169;
}

.thank-you-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #2d3748;
}

.thank-you-content h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #4a5568;
    font-weight: normal;
}

.thank-you-content > p {
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: #4a5568;
    line-height: 1.7;
}

.next-steps {
    background: #f7fafc;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 50px;
    text-align: left;
}

.next-steps h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.next-steps h3 i {
    color: #38a169;
}

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

.step {
    text-align: center;
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: #38a169;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #2d3748;
}

.step p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-info-quick {
    background: #f7fafc;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    border: 2px solid #38a169;
}

.contact-info-quick h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2d3748;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-info-quick h3 i {
    color: #38a169;
}

.contact-info-quick p {
    margin-bottom: 15px;
    color: #4a5568;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #38a169;
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin: 10px 0;
}

.phone-link:hover {
    background: #2f855a;
    transform: scale(1.05);
}

.office-hours {
    font-size: 0.9rem;
    color: #4a5568;
    font-style: italic;
    margin-top: 10px;
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: #4a5568;
}

.btn-secondary:hover {
    background: #2d3748;
}

.related-content {
    padding: 80px 0;
    background: #f7fafc;
}

.related-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2d3748;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.related-content h2 i {
    color: #38a169;
}

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

.content-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.content-card i {
    font-size: 3rem;
    color: #38a169;
    margin-bottom: 25px;
}

.content-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2d3748;
}

.content-card p {
    color: #4a5568;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-content {
        padding: 30px 15px;
        margin: 0 10px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        gap: 15px;
    }
    
    .hero-title i {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-info-quick {
        padding: 25px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-main {
        flex-direction: column;
    }
    
    .blog-sidebar {
        margin-top: 40px;
    }
    
    .blog-article-card {
        flex-direction: column;
        text-align: center;
    }
    
    .article-icon {
        margin-bottom: 20px;
        margin-right: 0;
    }
}

/* Blog Styles */
.blog-main {
    padding: 80px 0;
    background: white;
}

.blog-main .container {
    display: flex;
    gap: 60px;
    align-items: start;
}

.blog-articles {
    flex: 2;
}

.blog-sidebar {
    flex: 1;
    background: #f7fafc;
    padding: 40px;
    border-radius: 12px;
    position: sticky;
    top: 90px;
}

.blog-article-card {
    background: #f7fafc;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    border-left: 4px solid #38a169;
    transition: all 0.3s ease;
}

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

.article-icon {
    background: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.article-icon i {
    font-size: 2rem;
    color: #38a169;
}

.article-content {
    flex: 1;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.article-meta span {
    color: #4a5568;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-meta i {
    color: #38a169;
}

.blog-article-card h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.blog-article-card h2 a {
    color: #2d3748;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-article-card h2 a:hover {
    color: #38a169;
}

.blog-article-card p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Sidebar Styles */
.sidebar-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e2e8f0;
}

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

.sidebar-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-section h3 i {
    color: #38a169;
}

.search-form {
    display: flex;
    gap: 10px;
}

.search-form input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
}

.search-form button {
    background: #38a169;
    color: white;
    border: none;
    padding: 12px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-form button:hover {
    background: #2f855a;
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    color: #4a5568;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.category-list a:hover {
    color: #38a169;
}

.category-list span {
    background: #e2e8f0;
    color: #4a5568;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
}

.recent-posts {
    list-style: none;
}

.recent-posts li {
    margin-bottom: 15px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    border-left: 3px solid #38a169;
}

.recent-posts a {
    color: #2d3748;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.recent-posts a:hover {
    color: #38a169;
}

.recent-posts a i {
    color: #38a169;
    font-size: 1.1rem;
}

.post-date {
    color: #4a5568;
    font-size: 0.8rem;
    margin-left: 25px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form input {
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
}

.newsletter-form .btn {
    justify-content: center;
    font-size: 0.9rem;
    padding: 12px 20px;
}

/* Article Page Styles */
.article-header {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
    padding: 120px 0 80px;
}

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

.article-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #2d3748;
}

.article-meta-large {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.article-meta-large span {
    color: #4a5568;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
}

.article-meta-large i {
    color: #38a169;
}

.article-excerpt {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.article-content {
    padding: 80px 0;
    background: white;
}

.article-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2d3748;
}

.article-text h2 {
    font-size: 2rem;
    margin: 40px 0 20px;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 15px;
}

.article-text h2 i {
    color: #38a169;
}

.article-text h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: #2d3748;
}

.article-text p {
    margin-bottom: 20px;
}

.article-text ul, .article-text ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-text li {
    margin-bottom: 10px;
}

.article-quote {
    background: #f7fafc;
    border-left: 4px solid #38a169;
    padding: 30px;
    margin: 40px 0;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    font-size: 1.2rem;
    color: #4a5568;
}

.article-cta {
    background: #f7fafc;
    padding: 60px 0;
    text-align: center;
}

.article-cta h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2d3748;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.article-cta h3 i {
    color: #38a169;
}

.article-cta p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 30px;
}

/* Services Detail Page */
.services-detail {
    padding: 80px 0;
    background: white;
}

.service-detail-card {
    background: #f7fafc;
    border-radius: 12px;
    padding: 50px;
    margin-bottom: 40px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    border-left: 4px solid #38a169;
}

.service-detail-card .service-icon {
    background: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.service-detail-card .service-icon i {
    font-size: 2.5rem;
    color: #38a169;
}

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #2d3748;
}

.service-subtitle {
    font-size: 1.2rem;
    color: #38a169;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-content > p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-content h3 {
    font-size: 1.3rem;
    margin: 25px 0 15px;
    color: #2d3748;
}

.service-content ul {
    margin-bottom: 30px;
}

.service-content li {
    margin-bottom: 10px;
    color: #4a5568;
    padding-left: 20px;
    position: relative;
}

.service-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #38a169;
    font-weight: bold;
}

.service-benefits {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-benefits h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-benefits h4 i {
    color: #38a169;
}

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

.benefits-grid span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4a5568;
    font-size: 0.95rem;
    padding: 10px 15px;
    background: #f7fafc;
    border-radius: 8px;
    border-left: 3px solid #38a169;
}

.benefits-grid span i {
    color: #38a169;
    font-size: 1rem;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: #f7fafc;
}

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

.process-step {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #38a169;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 25px;
    box-shadow: 0 5px 15px rgba(56, 161, 105, 0.3);
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2d3748;
}

.process-step p {
    color: #4a5568;
    line-height: 1.6;
}

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

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

.industry-card {
    background: #f7fafc;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.industry-card:hover {
    border-color: #38a169;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.industry-card i {
    font-size: 3rem;
    color: #38a169;
    margin-bottom: 25px;
}

.industry-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2d3748;
}

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

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Legal Pages Styles */
.legal-content {
    padding: 80px 0;
    background: white;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.7;
    color: #2d3748;
}

.legal-text h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: #2d3748;
    border-bottom: 2px solid #38a169;
    padding-bottom: 10px;
}

.legal-text h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: #2d3748;
}

.legal-text h4 {
    font-size: 1.2rem;
    margin: 20px 0 10px;
    color: #38a169;
    font-weight: 600;
}

.legal-text p {
    margin-bottom: 15px;
}

.legal-text ul, .legal-text ol {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-text li {
    margin-bottom: 8px;
}

.contact-info-legal {
    background: #f7fafc;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #38a169;
    margin: 25px 0;
}

.contact-info-legal p {
    margin-bottom: 10px;
}

.last-updated {
    font-style: italic;
    color: #4a5568;
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.cookie-details {
    background: #f7fafc;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #38a169;
}

.cookie-settings-button {
    text-align: center;
    margin: 30px 0;
}

.third-party-cookies {
    background: #f7fafc;
    padding: 20px;
    border-radius: 8px;
    margin: 15px 0;
    border-left: 4px solid #38a169;
}

.third-party-cookies p {
    margin-bottom: 8px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.cookie-table th {
    background: #f7fafc;
    font-weight: 600;
    color: #2d3748;
}

.cookie-table tbody tr:hover {
    background: #f7fafc;
}

/* About Page Additional Styles */
.about-story {
    padding: 80px 0;
    background: white;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 15px;
}

.story-content h2 i {
    color: #38a169;
}

.story-content p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 25px;
    line-height: 1.8;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.mission, .vision {
    background: #f7fafc;
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid #38a169;
}

.mission h3, .vision h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mission h3 i, .vision h3 i {
    color: #38a169;
}

.values-section {
    padding: 80px 0;
    background: #f7fafc;
}

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

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

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

.value-card i {
    font-size: 3rem;
    color: #38a169;
    margin-bottom: 25px;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2d3748;
}

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

.team-section {
    padding: 80px 0;
    background: white;
}

.team-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.expertise-areas h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #2d3748;
    text-align: center;
}

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

.expertise-item {
    background: #f7fafc;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.expertise-item:hover {
    border-color: #38a169;
    transform: translateY(-3px);
}

.expertise-item i {
    font-size: 2rem;
    color: #38a169;
}

.expertise-item span {
    font-weight: 600;
    color: #2d3748;
}

.achievements-section {
    padding: 80px 0;
    background: #f7fafc;
}

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

.achievement-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.achievement-number {
    font-size: 3rem;
    font-weight: bold;
    color: #38a169;
    margin-bottom: 15px;
}

.achievement-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2d3748;
}

.achievement-card p {
    color: #4a5568;
    line-height: 1.6;
}

.philosophy-section {
    padding: 80px 0;
    background: white;
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: start;
}

.philosophy-text h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: #2d3748;
}

.philosophy-text h3:first-child {
    margin-top: 0;
}

.philosophy-text p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 25px;
}

.philosophy-principles {
    background: #f7fafc;
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid #38a169;
}

.philosophy-principles h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: #2d3748;
}

.philosophy-principles ul {
    list-style: none;
}

.philosophy-principles li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #4a5568;
}

.philosophy-principles li i {
    color: #38a169;
    margin-top: 3px;
}

.location-section {
    padding: 80px 0;
    background: #f7fafc;
}

.location-content h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #2d3748;
}

.location-content p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 30px;
}

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

.detail-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.detail-item i {
    font-size: 2rem;
    color: #38a169;
    margin-top: 5px;
}

.detail-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2d3748;
}

.detail-item p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
}
}