/* style.css für Integraleaf - REVISED GREEN THEME */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    /* CHANGED: Replaced purple gradient with a subtle, professional light background */
    background-color: #f4f7f5; 
    min-height: 100vh;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    /* CHANGED: Border color to match brand green */
    border-bottom: 3px solid #2A7F62;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}
.logo {
    font-size: 2rem;
    font-weight: bold;
    /* CHANGED: Replaced gradient with solid brand green */
    color: #2A7F62;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}
.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}
.nav-links a:hover {
    /* CHANGED: Hover color to brand green */
    color: #2A7F62;
}
.hero {
    /* CHANGED: Removed background and added a light border for definition */
    background: transparent;
    color: #333; /* CHANGED: Text color for light background */
    text-align: center;
    padding: 6rem 0;
    margin: 2rem 0;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
}
.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    /* CHANGED: Text shadow to be more subtle on a light background */
    text-shadow: none; 
}
.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.cta-button {
    display: inline-block;
    /* CHANGED: Replaced red gradient with solid brand green */
    background: #2A7F62;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    /* CHANGED: Box shadow to match new button color */
    box-shadow: 0 4px 15px rgba(42, 127, 98, 0.3);
}
.cta-button:hover {
    transform: translateY(-2px);
    /* CHANGED: Darken green on hover */
    background-color: #226950;
    box-shadow: 0 8px 25px rgba(42, 127, 98, 0.4);
}
.content {
    /* CHANGED: Updated background color */
    background: #ffffff;
    margin: 2rem 0;
    padding: 4rem 0;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}
.section {
    margin-bottom: 4rem;
}
.section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    /* CHANGED: Replaced gradient text with solid brand green */
    color: #2A7F62;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}
.service-card {
    /* CHANGED: Updated background to a very light green */
    background: #f7faf8;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* CHANGED: Border color to brand green */
    border-left: 4px solid #2A7F62;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.service-card h3 {
    /* CHANGED: Color to brand green */
    color: #2A7F62;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}
.service-card ul {
    list-style: none;
    padding-left: 0;
}
.service-card li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}
.service-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    /* CHANGED: Color to brand green */
    color: #2A7F62;
    font-weight: bold;
}
.target-audience {
    /* CHANGED: Replaced gradient with solid brand green */
    background: #2A7F62;
    color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin: 3rem 0;
}
.target-audience h3 { /* This is now h2 in HTML, but rule still applies */
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white; /* Ensure text is white on green background */
}
.audience-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}
.tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}
.cannabis-link {
    /* CHANGED: Aligned this section with the new brand color */
    background: #eaf3ed;
    color: #333;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 3rem 0;
    box-shadow: 0 4px 15px rgba(42, 127, 98, 0.2);
}
.cannabis-link h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: #2A7F62; /* CHANGED: Heading to brand green */
}
.cannabis-link a {
    color: white;
    background-color: #2A7F62; /* CHANGED: Button to brand green */
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #2A7F62;
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-block;
    margin-top: 1rem;
    transition: all 0.3s ease;
}
.cannabis-link a:hover {
    background: #226950;
    color: white;
    border-color: #226950;
    transform: translateY(-2px);
}
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}
.expertise-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    /* CHANGED: Border color to brand green */
    border-top: 3px solid #2A7F62;
    text-align: center;
}
.expertise-item h4 {
    /* CHANGED: Color to brand green */
    color: #2A7F62;
    margin-bottom: 0.5rem;
}
footer {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
    /* CHANGED: Border color to brand green */
    border-top: 3px solid #2A7F62;
}
/* No changes needed below this line, but included for completeness */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}
.contact-card {
    background: #f7faf8;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1.1rem;
    }
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }
    .audience-tags {
        flex-direction: column;
        align-items: center;
    }
    .container {
        padding: 0 10px;
    }
}