* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', 'Arial', sans-serif;
}
body {
    line-height: 1.6;
    color: #000;
    background: url('images/backgrounds.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
header {
    background: rgba(40, 167, 69, 0.85);
    color: white;
    padding: 1rem;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(5px);
}
nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}
nav .logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}
nav .logo .logo-icon {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}
nav .menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}
nav ul.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}
nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}
nav ul li a:hover, nav ul li a.active {
    background-color: #218838;
}
main {
    flex-grow: 1;
}
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.about-section, .services-section, .catalogue-section, .contact-section {
    padding: 3rem 1rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.content-container {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    max-width: 1200px;
    width: 100%;
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    color: #000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.6);
}
.hero h1, section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1e7e34;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.hero p, section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.cta-button {
    background: #28a745;
    color: white;
    padding: 0.8rem 1.8rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.cta-button:hover {
    background: #218838;
    transform: translateY(-2px);
}
.cta-button.secondary {
    background: transparent;
    border: 2px solid #28a745;
    color: #28a745;
}
.cta-button.secondary:hover {
    background: #28a745;
    color: white;
    border-color: #218838;
}
.about-content {
    text-align: left;
}
.about-content h3 {
    color: #218838;
    font-size: 1.5rem;
    margin: 1rem 0 0.5rem;
}
.about-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
.services-content, .catalogue-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.service-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: left;
}
.service-card h3 {
    color: #218838;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}
.collapsible-section {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: left;
}
.collapsible-title {
    color: #218838;
    font-size: 1.5rem;
    padding: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.collapsible-title::after {
    content: '▼';
    font-size: 1rem;
}
.collapsible-title.active::after {
    content: '▲';
}
.collapsible-content {
    display: none;
    padding: 1rem;
}
.collapsible-content.active {
    display: block;
}
.collapsible-content h4 {
    color: #28a745;
    font-size: 1.2rem;
    margin: 0.5rem 0;
}
.product-list {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
    text-align: left;
}
.contact-info h3 {
    color: #218838;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.contact-info p {
    margin-bottom: 0.75rem;
}
.contact-info a {
    color: #007bff;
    text-decoration: none;
}
.contact-info a:hover {
    text-decoration: underline;
}
#contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
#contact-form input, #contact-form textarea {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}
#contact-form input:focus, #contact-form textarea:focus {
    border-color: #28a745;
    outline: none;
}
footer {
    background: #28a745;
    color: white;
    text-align: center;
    padding: 1rem;
}
@media (max-width: 768px) {
    nav .menu-toggle {
        display: block;
    }
    nav ul.nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        background: rgba(40, 167, 69, 0.95);
        position: absolute;
        top: 100%;
        left: 0;
        padding: 1rem 0;
    }
    .nav-links.active {
        display: flex;
    }
    nav ul li {
        margin: 0.5rem 0;
    }
    .content-container {
        width: 90%;
        padding: 1.5rem;
    }
    .hero h1, section h2 {
        font-size: 1.8rem;
    }
    .hero p, section p {
        font-size: 0.9rem;
    }
    .cta-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    .contact-content {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    nav .logo {
        font-size: 1.25rem;
    }
    nav .menu-toggle {
        font-size: 1.5rem;
    }
    .hero h1, section h2 {
        font-size: 1.5rem;
    }
    .hero p, section p {
        font-size: 0.875rem;
    }
}
/* Styles for about.html Labcorp-inspired layout */
.about-hero {
    padding: 4rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.about-content-section {
    padding: 2rem 1rem;
    display: flex;
    justify-content: center;
}
.about-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1e7e34;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.about-hero p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}
.tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.tab {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #000;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.tab:hover, .tab.active {
    background: #28a745;
    color: white;
}
.tab-content {
    display: none;
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: left;
}
.tab-content.active {
    display: block;
}
.tab-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1e7e34;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.values-list {
    list-style: none;
    padding-left: 0;
}
.values-list li {
    margin-bottom: 0.75rem;
}
.values-list strong {
    color: #218838;
}
@media (max-width: 768px) {
    .about-hero h1, .tab-content h2 {
        font-size: 1.8rem;
    }
    .about-hero p, .tab-content p {
        font-size: 0.9rem;
    }
    .tabs {
        flex-direction: column;
        gap: 0.5rem;
    }
    .tab {
        width: 100%;
        text-align: center;
    }
}
@media (max-width: 480px) {
    .about-hero h1, .tab-content h2 {
        font-size: 1.5rem;
    }
    .about-hero p, .tab-content p {
        font-size: 0.875rem;
    }
}
/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1002;
    display: none;
}
.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cookie-content p {
    font-size: 0.9rem;
    color: #000;
    margin: 0;
    text-shadow: none;
}
.cookie-actions {
    display: flex;
    gap: 1rem;
}
.cookie-button {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }
    .cookie-button {
        width: 100%;
    }
}
/* Styles for Partners Section */
.partners-section {
    padding: 2rem 1rem;
    display: flex;
    justify-content: center;
}
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.partner-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}
.partner-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 1rem;
}
.partner-item h3 {
    color: #218838;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}
.partner-item p {
    font-size: 0.9rem;
    color: #333;
}
.partner-item a {
    color: #007bff;
    text-decoration: none;
}
.partner-item a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
}