<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 1. Base Styles */
@import 'base/reset.css';
@import 'base/typography.css';
@import 'base/variables.css';

/* 2. Layout Components */
@import 'layout/header.css';
@import 'layout/footer.css';
@import 'layout/grid.css';
@import 'layout/navigation.css';

/* 3. UI Components */
@import 'components/buttons.css';
@import 'components/cards.css';
@import 'components/forms.css';
@import 'components/popup.css';

/* 4. Page-specific styles */
@import 'pages/home.css';
@import 'pages/conditions.css';
@import 'pages/about.css';
@import 'pages/contact.css';

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

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

header {
    background-color: #f0f7f4;
    text-align: center;
    padding: 3rem 1rem;
}

.subtitle {
    color: #2c5530;
    font-size: 1.2rem;
    margin-top: 1rem;
}

.consultation-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

input[type="tel"] {
    flex: 1;
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

button {
    background-color: #4CAF50;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #45a049;
}

.conditions {
    padding: 2rem;
    background-color: #f9f9f9;
}

.conditions h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.condition-category {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.condition-category:hover {
    transform: translateY(-5px);
}

.condition-category h3 {
    color: #2c5530;
    margin-bottom: 1rem;
    text-align: center;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0.5rem;
}

.condition-category ul {
    list-style: none;
    padding: 0;
}

.condition-category ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    text-align: center;
}

.condition-category ul li:last-child {
    border-bottom: none;
}

.condition-category ul li a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    width: 100%;
}

.condition-category ul li a:hover {
    color: #4CAF50;
}

footer {
    text-align: center;
    padding: 2rem;
    background-color: #333;
    color: white;
}

@media (max-width: 768px) {
    .condition-grid {
        grid-template-columns: 1fr;
    }
}

/* Add these new styles */
.top-bar {
    background: #2c5530;
    color: white;
    padding: 8px 0;
    font-size: 0.9rem;
}

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

.contact-info span {
    margin-right: 20px;
}

.social-links a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
}

.main-nav {
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    padding: 20px 15px;
    display: block;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #4CAF50;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    min-width: 800px;
    left: 50%;
    transform: translateX(-50%);
    padding: 20px;
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.mega-menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.menu-column h3 {
    color: #2c5530;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.menu-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-column ul li {
    margin-bottom: 10px;
}

.menu-column ul a {
    color: #666;
    padding: 5px 0;
}

.menu-column ul a:hover {
    color: #4CAF50;
}

.consultation-btn {
    background-color: #4CAF50;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: 600;
    display: inline-block;
    text-align: center;
    margin: 1rem auto;
    min-width: 200px;
}

.consultation-btn:hover {
    background-color: #45a049;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .consultation-btn, .secondary-btn {
        width: 100%;
        max-width: 300px;
    }
}

.hero-section {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(rgba(240, 247, 244, 0.9), rgba(240, 247, 244, 0.9)),
                url('path-to-your-background-image.jpg');
    background-size: cover;
}

.trust-badges {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2c5530;
}

/* Footer Styles */
.footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 20px;
}

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

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

.footer-section a {
    color: #fff;
    text-decoration: none;
}

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

.newsletter-form input {
    padding: 10px;
    border: none;
    border-radius: 4px;
}

.footer-bottom {
    background: #111;
    padding: 20px 0;
    color: #fff;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-links a {
        margin: 0;
    }
}

/* Add these new styles */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    position: relative;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.close-popup {
    position: absolute;
    right: 1rem;
    top: 0.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}

.close-popup:hover {
    color: #333;
}

.phone-input-group {
    display: flex;
    gap: 8px;
    margin-bottom: 1rem;
}

.country-code {
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    min-width: 100px;
}

/* Make popup form responsive */
@media (max-width: 768px) {
    .popup-content {
        width: 95%;
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .phone-input-group {
        flex-direction: column;
    }
    
    .country-code {
        width: 100%;
    }
}

/* Add this to your existing styles.css file */
.social-links-footer {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-links-footer a {
    color: #fff;
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-links-footer a:hover {
    color: #8bc34a;
}

.top-bar .container {
    justify-content: center;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
} </pre></body></html>