/* Import fertiliQ Brand Fonts */
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
/* Note: Using similar web fonts as placeholders - Gotham and Neue Haas Grotesk require licensing */

/* CSS Variables for fertiliQ Brand Colors */
:root {
    --fertiliq-blue: #002AA5;      /* Logo Blue (100-84-5-1) */
    --fertiliq-pink: #EBA5C8;      /* Female F Pink (8-37-12-0) */
    --fertiliq-gray: #7D8787;      /* 35+ Gray (45-35-35-14) */
    --fertiliq-white: #FFFFFF;
    --text-primary: #2c3e50;
    --text-secondary: #7f8c8d;
}

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

/* Registered Trademark Styling */
sup {
    font-size: 0.6em;
    vertical-align: super;
    line-height: 0;
    font-weight: normal;
}

body {
    font-family: 'Barlow', 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--fertiliq-white);
    font-weight: 400;
}

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

/* fertiliQ Logo Styling */
.fertiliq-logo {
    color: #2c3e50;
    font-weight: 600;
    font-size: 2rem;
    line-height: 1.2;
}

/* fertiliQ Logo im Hero-Bereich */
.hero .fertiliq-logo {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.fertili {
    font-family: 'Montserrat', 'Gotham Medium', 'Barlow', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.q {
    font-family: 'Inter', 'Neue Haas Grotesk Text Pro', 'Barlow', sans-serif;
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* Product-specific colors */
.fertiliq-female {
    color: var(--fertiliq-pink);
    font-weight: 600;
}

.fertiliq-male {
    color: var(--fertiliq-blue);
    font-weight: 600;
}

.fertiliq-plus {
    color: var(--fertiliq-gray);
}

/* Typography */
h1 {
    font-size: 3rem;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.2rem;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -0.01em;
}

h3 {

.heading-h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.heading-h5 {
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}    font-size: 1.4rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #5a6c7d;
}

/* SVG Icons */
.icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.5rem;
    display: block;
}

.icon-small {
    width: 24px;
    height: 24px;
}

.icon-large {
    width: 60px;
    height: 60px;
    margin: 0 auto 2rem;
}

.icon svg {
    width: 100%;
    height: 100%;
    fill: #2c3e50;
}

.feature-icon .icon svg,
.benefit-icon .icon svg,
.quality-icon .icon svg {
    fill: #7f8c8d;
}

/* Header and Navigation */
.navbar {
    background: #ffffff;
    padding: 2rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo h1 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 0;
    font-weight: 300;
}

.logo .tagline {
    color: #7f8c8d;
    font-size: 0.8rem;
    font-weight: 300;
}

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

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-menu a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--fertiliq-blue);
}

/* Buttons */
.btn-primary {
    background: #2c3e50;
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 0;
    text-decoration: none;
    font-weight: 400;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-primary:hover {
    background: #34495e;
}

.btn-large {
    padding: 20px 40px;
    font-size: 1rem;
}

.btn-secondary {
    background: transparent;
    color: #2c3e50;
    padding: 12px 24px;
    border: 1px solid #2c3e50;
    border-radius: 0;
    text-decoration: none;
    font-weight: 400;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.btn-secondary:hover {
    background: #2c3e50;
    color: white;
}

/* Hero Section */
.hero {
    background: url('Hero.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.hero .container {
    max-width: 1200px;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    text-align: left;
}

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

.packshot-placeholder {
    text-align: center;
}

.sortiment-image {
    max-width: 100%;
    width: 100%;
}

.sortiment-hero-image {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.sortiment-hero-image:hover {
    transform: translateY(-4px);
}

.sortiment-image a {
    display: block;
    text-decoration: none;
}

.placeholder-box {
    background: rgba(255, 255, 255, 0.9);
    border: 2px dashed #0066cc;
    border-radius: 12px;
    padding: 4rem 3rem;
    text-align: center;
    color: #2c3e50;
}

.placeholder-box p {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #0066cc;
}

.placeholder-box span {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 200;
    color: white;
}

.hero-content h2 {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    text-align: left;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    margin-bottom: 3rem;
}

.hero-cta {
    margin-top: 0;
}

.medical-icon {
    display: none; /* Entfernt das medizinische Icon für Minimalismus */
}

/* About FertiliQ Section */
.about-fertiliq-section {
    background: linear-gradient(135deg, #f8fafe 0%, #ffffff 100%);
    padding: 40px 0;
    border-bottom: 1px solid #ecf0f1;
}

.about-fertiliq-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-fertiliq-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #2c3e50;
    margin: 0;
    font-weight: 400;
}

/* Content Sections */
.why-section,
.why-choose-section {
    padding: 60px 0;
}

.products-section {
    padding: 60px 0 40px 0;
}

.why-section {
    background: #fafafa;
}

.why-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.highlight {
    color: #2c3e50;
    font-weight: 500;
    font-size: 1.1rem;
    background: transparent;
    padding: 0;
    border: none;
    margin-top: 2rem;
}



.micronutrients-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.micronutrients-flow {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 4rem;
    margin-top: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}







.micronutrient-card {
    position: relative;
    background: #f8fafe;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #0066cc;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
    display: flex;
    flex-direction: column;
}

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



.micronutrient-card h3 {

.heading-h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.heading-h5 {
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 500;
}

.micronutrient-card p {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
}

.card-benefits {
    list-style: none;
    padding-left: 0;
    text-align: left;
}

.card-benefits li {
    padding: 10px 0;
    color: #2c3e50;
    position: relative;
    padding-left: 20px;
}

.card-benefits li::before {
    content: "•";
    color: #0066cc;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.benefits-list {
    list-style: none;
    padding-left: 0;
}

.benefits-list li {
    padding: 15px 0;
    font-size: 1rem;
    color: #2c3e50;
    border-bottom: 1px solid #ecf0f1;
}

.benefits-list li:last-child {
    border-bottom: none;
}

/* Products Section */
.products-section {
    background: #fafafa;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    font-weight: 300;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.products-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: #2c3e50;
    font-size: 1.1rem;
}

.products-showcase {
    margin-top: 6rem;
}

.product-category-showcase {
    margin-bottom: 3rem;
}

.product-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #bdc3c7 20%, #95a5a6 50%, #bdc3c7 80%, transparent 100%);
    margin: 3rem 0;
    border-radius: 1px;
    opacity: 0.7;
}

.category-row {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
}

.category-label {
    min-width: 80px;
    text-align: right;
    padding: 0.5rem 0;
    margin-top: 1rem;
}

.category-label h3 {

.heading-h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.heading-h5 {
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}    font-size: 1.3rem;
    color: #2c3e50;
    font-weight: 600;
    margin: 0;
    border-bottom: 3px solid var(--fertiliq-blue);
    padding-bottom: 0.3rem;
    display: inline-block;
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
}

.category-header h3 {

.heading-h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.heading-h5 {
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 300;
}

.category-header p {
    color: #7f8c8d;
    font-size: 1.1rem;
}

.products-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(580px, 1fr));
    gap: 2.5rem;
    max-width: 1600px;
    margin: 0 auto;
}

.product-card-enhanced {
    background: white;
    border-radius: 12px;
    padding: 1.5rem 3rem;
    display: flex;
    gap: 1.5rem;
    align-items: stretch;
    transition: all 0.3s ease;
    border: 1px solid #ecf0f1;
    position: relative;
    overflow: hidden;
}

.product-card-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: #0066cc;
}

.product-card-enhanced.featured {
    border: 2px solid #0066cc;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafe 100%);
}

.featured-badge {
    position: absolute;
    top: -0.5rem;
    right: 0.5rem;
    background: #0066cc;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 10;
}

.product-card-enhanced .product-image {
    width: 250px;
    height: 360px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

/* Noch größere Container für 35 Plus Produkte */
.product-card-enhanced.featured .product-image {
    width: 270px;
    height: 380px;
}

.product-card-enhanced .product-image img {
    max-width: 220px;
    max-height: 280px;
    width: auto;
    height: auto;
    object-fit: contain;
    flex-grow: 1;
}

/* Größere Bilder für 35 Plus Produkte */
.product-card-enhanced.featured .product-image img {
    max-width: 240px;
    max-height: 300px;
}

.product-card-enhanced .product-image .btn-secondary {
    margin-top: 1rem;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    width: auto;
    flex-shrink: 0;
}

.product-info {
    flex: 1;
    min-width: 0;
    overflow: visible;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.product-info h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 500;
}

.product-info .product-description {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    flex-grow: 1;
}

.key-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    min-height: 60px;
    align-content: flex-start;
}

.benefit-tag {
    background: #e8f4fd;
    color: #0066cc;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
    display: inline-block;
    min-height: 1.2rem;
    line-height: 1.2;
    box-sizing: border-box;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.product-card {
    background: white;
    border: 1px solid #ecf0f1;
    border-radius: 0;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
}

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

/* Produktbilder */
.product-image {
    width: 120px;
    height: 160px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* Produkticons - fallback für alte Icons */
.product-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    font-weight: 300;
}

.product-icon.female {
    background: #e8b4b8;
}

.product-icon.female-plus {
    background: #d4a5aa;
}

.product-icon.male {
    background: #5a7a95;
}

.product-icon.male-plus {
    background: #485f75;
}

.product-icon.female::after {
    content: "F";
}

.product-icon.female-plus::after {
    content: "F+";
    font-size: 1.2rem;
}

.product-icon.male::after {
    content: "M";
}

.product-icon.male-plus::after {
    content: "M+";
    font-size: 1.2rem;
}

.product-subtitle {
    color: #7f8c8d;
    font-style: normal;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.benefits {
    text-align: left;
    margin: 2rem 0;
}

.benefits p {
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-weight: 400;
    font-size: 0.95rem;
}

/* Why Choose Section */
.why-choose-section {
    background: #ffffff;
}

.features-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 3rem 2rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature {
    text-align: center;
    background: transparent;
    padding: 2rem 1rem;
}

.feature-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature h3 {

.heading-h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.heading-h5 {
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 500;
}

.feature p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: #7f8c8d;
}

/* CTA Section */
.cta-section {
    background: #2c3e50;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 300;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: rgba(255,255,255,0.8);
}

/* Health Claims Section */
.health-claims-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.health-claims-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.health-claims-content h3 {

.heading-h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.heading-h5 {
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.health-claims-content p {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    text-align: center;
}

.health-claims-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.health-claims-column h3 {

.heading-h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.heading-h5 {
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}    text-align: left;
}

.health-claims-column h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--fertiliq-blue);
}

.health-claims-column h5 {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 500;
    margin: 1.5rem 0 0.5rem 0;
}

.health-claims-column ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.health-claims-column li {
    font-size: 0.9rem;
    color: #5a6c7d;
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.health-claims-column li:before {
    content: "•";
    color: var(--fertiliq-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .health-claims-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .health-claims-column h4 {
        font-size: 1.2rem;
    }
}

/* Enhanced CTA Section */
.cta-section-enhanced {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('FertiliQ_2.png');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    padding: 60px 0;
}

.cta-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 50px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.cta-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #5a6c7d;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-cta-primary {
    display: inline-block;
    background: linear-gradient(135deg, #2c3e50 0%, var(--fertiliq-blue) 100%);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.btn-cta-secondary {
    display: inline-block;
    background: white;
    color: #2c3e50;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #2c3e50;
}

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

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 1px solid #ecf0f1;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #7f8c8d;
    font-size: 0.95rem;
    font-weight: 500;
}

.cta-feature svg {
    width: 18px;
    height: 18px;
    fill: var(--fertiliq-blue);
    flex-shrink: 0;
}

/* Product Pages Styles */
.product-hero {
    background: #ffffff;
    padding: 100px 0;
}

.product-hero-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.product-hero-content {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.product-hero-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* Product Hero Images */
.product-hero-image {
    width: 650px;
    height: 800px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Fallback for old product icons */
.product-icon-large {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    font-weight: 200;
}

.product-icon-large.female {
    background: #e8b4b8;
}

.product-icon-large.female-plus {
    background: #d4a5aa;
}

.product-icon-large.male {
    background: #5a7a95;
}

.product-icon-large.male-plus {
    background: #485f75;
}

.product-icon-large.female::after {
    content: "F";
}

.product-icon-large.female-plus::after {
    content: "F+";
    font-size: 2rem;
}

.product-icon-large.male::after {
    content: "M";
}

.product-icon-large.male-plus::after {
    content: "M+";
    font-size: 2rem;
}

.product-tagline {
    font-size: 1rem;
    color: #7f8c8d;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.product-description {
    font-size: 1.1rem;
    color: #5a6c7d;
    max-width: 500px;
    margin: 0 auto;
}

/* Product Benefits */
.product-benefits {
    background: #fafafa;
    padding: 80px 0;
}

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

.benefit-item {
    text-align: center;
    background: white;
    padding: 2.5rem;
    border: 1px solid #ecf0f1;
    border-radius: 12px;
}

/* Product-specific border colors for benefit items */
.benefit-item.fertiliq-f {
    border: 1px solid var(--fertiliq-pink);
}

.benefit-item.fertiliq-m {
    border: 1px solid var(--fertiliq-blue);
}

.benefit-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* Key Nutrients */
.key-nutrients {
    background: #ffffff;
    padding: 80px 0;
}

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

.nutrient-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid #ecf0f1;
}

.nutrient-item.enhanced h4 {
    color: #e74c3c;
}

/* Age Specific & Male Fertility */
.age-specific,
.male-fertility {
    background: #fafafa;
    padding: 80px 0;
}

.age-content,
.fertility-content {
    max-width: 700px;
    margin: 0 auto;
}

.age-benefits,
.fertility-benefits {
    list-style: none;
    padding-left: 0;
    margin-top: 2rem;
}

.age-benefits li,
.fertility-benefits li {
    padding: 10px 0;
    border-bottom: 1px solid #ecf0f1;
    color: #2c3e50;
}

/* Usage Section */
.usage-section {
    background: #ffffff;
    padding: 80px 0;
}

.usage-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Usage and Ingredients Combined Section */
.usage-ingredients-section {
    background: #ffffff;
    padding: 80px 0;
}

.usage-ingredients-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.usage-box, .ingredients-box {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
    border-left: 4px solid var(--fertiliq-blue);
}

.usage-box h3, .ingredients-box h3 {

.heading-h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.heading-h5 {
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.usage-box .usage-highlight {
    background: #e8f4fd;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 1.5rem 0;
    text-align: center;
}

.ingredients-box .ingredients-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5a6c7d;
}

.usage-visual {
    text-align: center;
}

.supplement-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.usage-highlight {
    font-size: 1.2rem;
    font-weight: 500;
    color: #2c3e50;
}

/* Quality Section */
.quality-section {
    background: #fafafa;
    padding: 80px 0;
}

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

.quality-item {
    text-align: center;
    background: white;
    padding: 2rem;
    border: 1px solid #ecf0f1;
}

.quality-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* Product Purchase Card */
.product-purchase-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin-top: 40px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #ecf0f1;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.price-section {
    text-align: center;
    margin-bottom: 25px;
}

.price-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
}

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

.price-detail-wrapper {
    text-align: center;
    margin-bottom: 8px;
}

.price-detail {
    font-size: 1rem;
    color: #7f8c8d;
    font-weight: 500;
}

.price-per-day {
    font-size: 0.9rem;
    color: #27ae60;
    font-weight: 600;
}

.price-per-kg {
    font-size: 0.8rem;
    color: #7f8c8d;
    font-weight: 400;
    margin: 0;
    display: block;
    text-align: center;
}

.purchase-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.btn-purchase-primary {
    flex: 1;
    background: linear-gradient(135deg, #2c3e50 0%, var(--fertiliq-blue) 100%);
    color: white;
    border: none;
    padding: 18px 24px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-purchase-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.btn-purchase-primary svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.btn-purchase-secondary {
    background: white;
    color: #2c3e50;
    border: 2px solid #2c3e50;
    padding: 18px 24px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 120px;
}

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

.btn-purchase-secondary svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.purchase-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.purchase-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.purchase-benefits .benefit-item svg {
    width: 18px;
    height: 18px;
    fill: var(--fertiliq-blue);
    flex-shrink: 0;
}

/* Sticky Buy Bar */
.sticky-buy-bar {
    position: fixed;
    top: -80px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 2px solid #ecf0f1;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.sticky-buy-bar.visible {
    top: 0;
    opacity: 1;
    visibility: visible;
}

.sticky-buy-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.sticky-buy-content .product-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.product-thumb {
    width: 75px;
    height: 90px;
    object-fit: contain;
    border-radius: 8px;
    flex-shrink: 0;
}

.product-details {
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-details h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #2c3e50;
    white-space: nowrap;
}

.product-details .price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    white-space: nowrap;
}

.buy-actions {
    display: flex;
    gap: 10px;
}

.btn-sticky-buy {
    background: linear-gradient(135deg, #2c3e50 0%, var(--fertiliq-blue) 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-sticky-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.btn-sticky-buy svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.btn-sticky-heart {
    background: white;
    color: #2c3e50;
    border: 2px solid #2c3e50;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-sticky-heart:hover {
    background: #2c3e50;
    color: white;
    transform: translateY(-2px);
}

.btn-sticky-heart svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Product CTA */
.product-cta {
    background: #2c3e50;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.product-cta h2 {
    color: white;
    font-weight: 300;
}

.product-cta p {
    color: rgba(255,255,255,0.8);
}

.cta-note {
    font-size: 0.9rem;
    margin-top: 2rem;
    color: rgba(255,255,255,0.6);
}

/* Additional Styles for FertiliQ F 35 Plus */
.scientific-background {
    background: #fafafa;
    padding: 80px 0;
}

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

.phase-concept {
    background: #ffffff;
    padding: 80px 0;
}

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

.phase-item {
    background: #fafafa;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid #2c3e50;
}

.phase-number {
    width: 60px;
    height: 60px;
    background: #2c3e50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
}

.phase-details {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #ecf0f1;
}

.phase-details p {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #5a6c7d;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.key-benefit {
    background: #f8fafe;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

.key-benefit h4 {
    color: #0066cc;
    margin-bottom: 1rem;
}

.l-arginin-section {
    background: #fafafa;
    padding: 3rem;
    border-radius: 8px;
    margin-top: 3rem;
}

.l-arginin-section h3 {

.heading-h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.heading-h5 {
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}    color: #2c3e50;
    text-align: center;
    margin-bottom: 2rem;
}

.arginin-facts {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    border: 1px solid #ecf0f1;
}

.arginin-facts h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.ingredients-table {
    background: #fafafa;
    padding: 80px 0;
}

.table-responsive {
    overflow-x: auto;
    margin-top: 2rem;
}

.nutrients-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.nutrients-table td {
    padding: 1rem;
    border-bottom: 1px solid #ecf0f1;
}

.nutrients-table tr:nth-child(even) {
    background: #fafafa;
}

.nutrients-table tr:hover {
    background: #f0f8ff;
}

.table-notes {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #ecf0f1;
}

.table-notes p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.important-info {
    background: #ffffff;
    padding: 80px 0;
}

.info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.general-info ul {
    list-style: none;
    padding-left: 0;
}

.general-info li {
    padding: 10px 0;
    border-bottom: 1px solid #ecf0f1;
    color: #2c3e50;
    position: relative;
    padding-left: 20px;
}

.general-info li::before {
    content: "•";
    color: #0066cc;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.warning-box {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
    margin-top: 1rem;
}

.warning-box p {
    margin-bottom: 1rem;
    color: #2c3e50;
    position: relative;
    padding-left: 1.5rem;
}

.warning-box p::before {
    content: "•";
    color: #2c3e50;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.for-women {
    background: #f8fafe;
    padding: 80px 0;
    text-align: center;
}

.for-women-content {
    max-width: 600px;
    margin: 0 auto;
}

.slogan {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0066cc;
    margin-top: 2rem;
    font-style: italic;
}

/* Related Products */
.related-products {
    background: #ffffff;
    padding: 80px 0;
}

/* Impressum Styles */
.impressum-section {
    background: #ffffff;
    padding: 120px 0 100px;
    min-height: 80vh;
}

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

.impressum-content h1 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-weight: 300;
}

.impressum-content h2 {
    color: #2c3e50;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-size: 1.4rem;
    border-bottom: 1px solid #ecf0f1;
    padding-bottom: 0.5rem;
}

.impressum-content h3 {

.heading-h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.heading-h5 {
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.impressum-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #2c3e50;
}

.impressum-content a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.impressum-content a:hover {
    color: #004a99;
    text-decoration: underline;
}

.company-info,
.contact-info,
.legal-info,
.management-info,
.disclaimer {
    margin-bottom: 3rem;
    padding: 0;
    background: transparent;
    border: none;
}

.disclaimer h2 {
    color: #2c3e50;
    border-bottom-color: #2c3e50;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.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: white;
    margin-bottom: 1rem;
    font-weight: 400;
}

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

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

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
    color: rgba(255,255,255,0.6);
}

/* Key Benefits Section */
.key-benefits-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.key-benefits-section h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.key-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-feature {
    text-align: center;
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    border: 1px solid #ecf0f1;
    transition: all 0.3s ease;
}

.benefit-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--fertiliq-pink);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fertiliq-pink);
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
}



.benefit-feature h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--fertiliq-pink);
    margin-bottom: 0.5rem;
    margin-top: 0;
}

/* FertiliQ M specific colors - for fertiliq-m.html page */
.fertiliq-m-page .benefit-feature:hover {
    border-color: var(--fertiliq-blue);
}

.fertiliq-m-page .benefit-icon {
    color: var(--fertiliq-blue);
}

.fertiliq-m-page .benefit-feature h4 {
    color: var(--fertiliq-blue);
}

.benefit-feature p {
    font-size: 0.95rem;
    color: #7f8c8d;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design */
/* Mobile Optimizations */
@media (max-width: 768px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .product-card-enhanced .product-image img {
        max-width: 160px;
        max-height: 200px;
    }
    
    .product-card-enhanced.featured .product-image img {
        max-width: 180px;
        max-height: 220px;
    }
    
    .product-card-enhanced .product-image {
        width: 180px;
        height: 260px;
        padding: 0.8rem 0;
    }
    
    .product-card-enhanced.featured .product-image {
        width: 200px;
        height: 280px;
    }
    
    .product-card-enhanced {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem 2rem;
    }
    
    .product-card-enhanced .product-info {
        height: auto;
        justify-content: flex-start;
        gap: 1rem;
    }
    
    .product-card-enhanced .product-image .btn-secondary {
        margin-top: 0.8rem;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .product-card-enhanced .key-benefits {
        justify-content: center;
        margin-bottom: 0.8rem;
        min-height: 50px;
    }
    
    .product-card-enhanced .benefit-tag {
        font-size: 0.72rem;
        padding: 0.4rem 1rem;
        border-radius: 25px;
    }
    
    .featured-badge {
        top: -0.3rem;
        right: 0.5rem;
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        z-index: 10;
    }
    
    .products-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .key-benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefit-feature {
        padding: 1.5rem;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero {
        padding: 60px 0;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-wrapper {
        margin: 0 1rem;
        padding: 30px 20px;
    }
    
        .sortiment-image {
        max-width: 100%;
        padding: 0 1rem;
    }
    
            .sortiment-hero-image {
        width: 100%;
        max-width: 300px;
        height: auto;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .sortiment-hero-image {
        max-width: 250px;
    }
    
    .nav-menu a {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .fertiliq-logo {
        font-size: 1.6rem;
    }
    
    .tagline {
        font-size: 0.7rem;
    }
    
    /* Mobile Product Pages - Small Devices */
    .product-hero {
        padding: 40px 0 30px;
    }
    
    .product-hero-header h1 {
        font-size: 1.6rem;
    }
    
    .product-hero-header .product-tagline {
        font-size: 0.9rem;
    }
    
    .product-hero-image {
        max-width: 250px;
    }
    
    .product-purchase-card {
        margin: 0 10px 20px;
        padding: 15px;
    }
    
    .price {
        font-size: 1.8rem;
    }
    
    .key-benefits-section h2,
    .scientific-background h2,
    .related-products h2 {
        font-size: 1.5rem;
    }
    
    .accordion-header {
        padding: 15px;
        font-size: 1rem;
    }
    
    .accordion-content-inner {
        padding: 15px;
    }
    
    .slide-content h4 {
        font-size: 1.1rem;
    }
    
    .slide-content p {
        font-size: 0.85rem;
    }
    
    /* Mobile Product CTA Section */
    .product-cta {
        padding: 40px 0 !important;
    }
    
    .product-cta .container {
        padding: 0 15px;
    }
    
    .product-cta h2 {
        font-size: 1.3rem !important;
    }
    
    .product-cta h3 {

.heading-h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.heading-h5 {
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}        font-size: 1.1rem !important;
    }
    
    .product-cta > div > div {
        max-width: 100% !important;
        padding: 0 10px;
    }
    
    .product-cta .btn-purchase-primary {
        padding: 12px 20px !important;
        font-size: 0.9rem !important;
    }
    
    .experten-tips-section h2,
    section[style*="background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%)"] h2 {
        font-size: 1.6rem !important;
    }
    
    .experten-tips-section p,
    section[style*="background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%)"] p {
        font-size: 0.9rem !important;
    }
    
    /* Mobile Product Categories Layout */
    .category-row {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: center;
    }
    
    .category-label {
        min-width: auto;
        text-align: center;
        padding: 0;
        margin-top: 0;
        width: 100%;
    }
    
    .category-label h3 {

.heading-h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.heading-h5 {
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .products-row {
        width: 100%;
    }

    .placeholder-box {
        padding: 3rem 2rem;
    }
    
    .micronutrients-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .micronutrients-flow {
        flex-direction: column;
        gap: 3rem;
    }
    
    .products-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-card-enhanced {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .product-card-enhanced .product-info {
        height: auto;
        justify-content: flex-start;
        gap: 1rem;
    }
    
    .product-card-enhanced .key-benefits {
        min-height: 55px;
        justify-content: center;
    }
    
    .product-card-enhanced .product-image {
        width: 280px;
        height: 400px;
        padding: 1rem 0;
    }
    
    .product-card-enhanced.featured .product-image {
        width: 300px;
        height: 420px;
    }
    
    .product-card-enhanced .product-image .btn-secondary {
        margin-top: 1rem;
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .features-row {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 2rem;
    }
    
    .feature {
        min-width: auto;
    }
    
    .cta-wrapper {
        padding: 40px 20px;
        margin: 0 15px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    /* About FertiliQ Section Mobile */
    .about-fertiliq-section {
        padding: 40px 0;
    }

    .about-fertiliq-content p {
        font-size: 1.1rem;
        line-height: 1.6;
        padding: 0 20px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        gap: 0;
        z-index: 1000;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-menu a {
        display: block;
        padding: 1.5rem 2rem;
        font-size: 1.1rem;
    }
    
    .nav-container {
        position: relative;
    }
    
    .usage-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .usage-box, .ingredients-box {
        padding: 2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .phase-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .info-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .key-benefits {
        grid-template-columns: 1fr;
    }
    
    .nutrients-table {
        font-size: 0.9rem;
    }
    
    .nutrients-table th,
    .nutrients-table td {
        padding: 0.75rem 0.5rem;
    }
    
    /* Mobile Product Hero Layout */
    .product-hero {
        padding: 60px 0 40px;
    }
    
    .product-hero-header {
        margin: 0 auto 3rem;
        padding: 0 20px;
    }
    
    .product-hero-header h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .product-hero-header .product-description {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .product-hero-content {
        flex-direction: column;
        gap: 2rem;
        padding: 0 20px;
    }

    .product-hero-left,
    .product-hero-right {
        flex: none;
        width: 100%;
    }

    .product-hero-image {
        width: 100%;
        max-width: 300px;
        height: auto;
        margin: 0 auto 2rem;
    }
    
    .product-hero-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    /* Mobile Product Purchase Card */
    .product-purchase-card {
        margin: 0 15px 30px;
        padding: 20px;
        width: auto;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .price-detail {
        font-size: 0.9rem;
    }
    
    .purchase-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-purchase-primary,
    .btn-purchase-secondary {
        width: 100%;
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    /* Mobile Key Benefits Section */
    .key-benefits-section {
        padding: 40px 0;
    }
    
    .key-benefits-section .container {
        padding: 0 20px;
    }
    
    .key-benefits-section h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    /* Mobile Scientific Background */
    .scientific-background {
        padding: 40px 0;
    }
    
    .scientific-background .container {
        padding: 0 20px;
    }
    
    .scientific-background h2 {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .scientific-content-split {
        flex-direction: column;
        gap: 2rem;
    }
    
    .content-left,
    .content-right {
        flex: none;
        width: 100%;
    }
    
    /* Mobile Product Combination Grid */
    .products-combination-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .combination-product {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .product-image-container {
        max-width: 200px;
        margin: 0 auto;
    }
    
    /* Mobile Product Info Accordion */
    .product-info-accordion {
        padding: 40px 0;
    }
    
    .product-info-accordion .container {
        padding: 0 20px;
    }
    
    .accordion-header {
        padding: 20px;
        font-size: 1.1rem;
    }
    
    .accordion-content-inner {
        padding: 20px;
    }
    
    /* Mobile Quality Info Section */
    .quality-info-section {
        padding: 40px 0;
    }
    
    .quality-info-section .container {
        padding: 0 20px;
    }
    
    .quality-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .quality-promise h2,
    .important-info h2 {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .quality-item {
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .warning-box {
        padding: 20px;
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Mobile Micronutrient Slideshow */
    .micronutrient-slideshow {
        max-width: 100%;
        margin: 0 auto;
        padding: 1rem;
        box-sizing: border-box;
    }
    
    .slideshow-container {
        height: auto;
        min-height: 300px;
        overflow: hidden;
    }
    
    .slideshow-wrapper {
        width: 500%;
    }
    
    .slide {
        flex: 0 0 20%;
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        min-width: 0;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .slide-image {
        max-width: 150px;
        margin: 0 auto 15px;
    }
    
    .slide-image img {
        max-width: 100%;
        height: auto;
    }
    
    .slide-content {
        overflow: hidden;
    }
    
    .slide-content h4 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
        line-height: 1.4;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
    }
    
    /* Mobile Related Products */
    .related-products {
        padding: 40px 0;
    }
    
    .related-products .container {
        padding: 0 20px;
    }
    
    .related-products h2 {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    /* Mobile Experten Tips Section */
    .experten-tips-section,
    section[style*="background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%)"] {
        padding: 60px 0 !important;
    }
    
    .experten-tips-section .container,
    section[style*="background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%)"] .container {
        padding: 0 20px;
    }
    
    .experten-tips-section h2,
    section[style*="background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%)"] h2 {
        font-size: 2rem !important;
        margin-bottom: 15px !important;
    }
    
    .experten-tips-section > div > div,
    section[style*="background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%)"] > div > div {
        max-width: 100% !important;
        margin: 0 20px !important;
    }
    
    .experten-tips-section > div > div > div,
    section[style*="background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%)"] > div > div > div {
        padding: 30px 20px !important;
        margin-top: 20px !important;
    }
    
    .experten-tips-section p,
    section[style*="background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%)"] p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        margin-bottom: 20px !important;
    }
    
    .experten-tips-section h4,
    section[style*="background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%)"] h4 {
        font-size: 1.1rem !important;
    }
    
    /* Mobile Sticky Buy Bar */
    .sticky-buy-bar {
        padding: 12px 0; /* Reduce padding for smaller bar */
    }
    
    .sticky-buy-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .sticky-buy-content .product-thumb {
        display: none; /* Hide product image on mobile */
    }
    
    .sticky-buy-content .product-info {
        justify-content: center;
        text-align: center;
        align-items: center;
    }
    
    .product-details {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    
    .sticky-buy-content .price {
        font-size: 1.4rem;
        font-weight: bold;
    }
    
    .sticky-buy-content .price-per-kg {
        font-size: 0.8rem;
        color: #666;
    }
    
    .btn-sticky-buy {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-width: 140px;
    }
    
    .buy-actions {
        width: 100%;
        justify-content: center;
    }
    
    .btn-sticky-heart {
        padding: 10px;
    }
} 

/* ===== GLOSSAR STYLES ===== */
.glossar-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 120px 0 80px;
    color: #2c3e50;
    text-shadow: none;
}

.hero-content-center {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.glossar-hero .hero-content-center h1 {
    color: #2c3e50;
    text-shadow: none;
}

.glossar-hero .hero-description {
    color: #5a6c7d;
    text-shadow: none;
}

.hero-content-center h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.125rem;
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 0;
}

/* FAQ Hero - White text for dark background */
.faq-hero .hero-content-center h1 {
    color: white;
}

.faq-hero .hero-description {
    color: rgba(255, 255, 255, 0.9);
}

/* Alphabet Navigation */
.alphabet-nav {
    background: #ffffff;
    border-bottom: 1px solid #ecf0f1;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Smooth scrolling offset for anchor links */
html {
    scroll-behavior: smooth;
}

/* Invisible anchor points for perfect alignment */
.glossar-section::before {
    content: "";
    display: block;
    height: 60px; /* height of alphabet nav */
    margin-top: -60px;
    visibility: hidden;
    pointer-events: none;
}

.alphabet-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.alphabet-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #f8f9fa;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.alphabet-links a:hover {
    background: #2c3e50;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Glossar Content */
.glossar-content {
    padding: 60px 0;
    background: #ffffff;
}

.glossar-section {
    margin-bottom: 60px;
}

.letter-heading {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 30px;
    padding-bottom: 12px;
    border-bottom: 3px solid transparent;
    background: linear-gradient(90deg, var(--fertiliq-blue), #2c3e50) bottom / 100% 3px no-repeat;
    position: relative;
}

.glossar-entries {
    display: grid;
    gap: 24px;
}

.glossar-entry {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 24px;
    border-left: 4px solid var(--fertiliq-blue);
    transition: all 0.3s ease;
}

.glossar-entry:hover {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(52, 152, 219, 0.08);
    transform: translateY(-2px);
}

.glossar-entry h3 {

.heading-h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.heading-h5 {
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}    font-size: 1.125rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    line-height: 1.4;
}

.glossar-entry p {
    font-size: 0.9375rem;
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0;
}

/* Active navigation state */
.nav-menu a.active {
    color: var(--fertiliq-blue);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .glossar-hero {
        padding: 100px 0 60px;
        text-shadow: none;
    }
    
    .glossar-hero .hero-content-center h1 {
        font-size: 1.875rem;
        color: #2c3e50;
        text-shadow: none;
    }
    
    .glossar-hero .hero-description {
        font-size: 1rem;
        color: #5a6c7d;
        text-shadow: none;
    }
    
    .alphabet-nav {
        top: 0;
        padding: 15px 0;
    }
    
    .alphabet-links {
        gap: 8px;
    }
    
    .alphabet-links a {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
    
    .letter-heading {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .glossar-entry {
        padding: 18px;
    }
    
    .glossar-entry h3 {

.heading-h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.heading-h5 {
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}        font-size: 1rem;
    }
    
    .glossar-entry p {
        font-size: 0.875rem;
    }
    
    /* Adjust invisible anchor for mobile */
    .glossar-section::before {
        height: 50px; /* height of alphabet nav on mobile */
        margin-top: -50px;
    }
}

@media (max-width: 480px) {
    .alphabet-links {
        gap: 6px;
    }
    
    .alphabet-links a {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
} 

/* ===== KONTAKT STYLES ===== */
.kontakt-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 120px 0 80px;
}

.kontakt-hero .hero-content-center h1 {
    color: #2c3e50;
    text-shadow: none;
}

.kontakt-hero .hero-description {
    color: #5a6c7d;
    text-shadow: none;
}

.contact-content {
    padding: 80px 0;
    background: #ffffff;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 6rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-section h2,
.contact-info-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-form-section p {
    color: #7f8c8d;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Contact Form Styles */
.contact-form {
    max-width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    display: block;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--fertiliq-blue);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

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

.form-group select {
    cursor: pointer;
}

/* Custom Checkbox */
.checkbox-group {
    margin-bottom: 2.5rem;
}

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

.checkbox-label input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border: 3px solid #2c3e50;
    border-radius: 6px;
    background: white;
    position: relative;
    cursor: pointer;
    margin: 0;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.checkbox-label input[type="checkbox"]:hover {
    border-color: var(--fertiliq-blue);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.checkbox-label input[type="checkbox"]:checked {
    background: var(--fertiliq-blue);
    border-color: var(--fertiliq-blue);
}

.checkbox-label input[type="checkbox"]:checked::before {
    content: "✓";
    color: white;
    font-weight: bold;
    font-size: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
}

.checkbox-label input[type="checkbox"]:focus {
    outline: 3px solid var(--fertiliq-blue);
    outline-offset: 2px;
}

.checkbox-label a {
    color: var(--fertiliq-blue);
    text-decoration: none;
    font-weight: 500;
}

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

/* Contact Info Styles */
.contact-info-section {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
    height: fit-content;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #ecf0f1;
}

.contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--fertiliq-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.contact-details h3 {

.heading-h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.heading-h5 {
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #7f8c8d;
    margin: 0;
    line-height: 1.6;
}

.contact-details a {
    color: var(--fertiliq-blue);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: transparent;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 3rem;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--fertiliq-blue);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.1);
}

.faq-item h3 {

.heading-h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.heading-h5 {
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.faq-item p {
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0;
}

/* FAQ Accordion Styles */
.faq-section {
    margin-bottom: 40px;
}

.faq-section h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 24px;
    border-bottom: 2px solid var(--fertiliq-blue);
    padding-bottom: 12px;
}

.faq-accordion {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item-accordion {
    border: 1px solid #ecf0f1;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.faq-item-accordion:hover {
    border-color: var(--fertiliq-blue);
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.1);
}

.faq-question {
    background: #ffffff;
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: #ffffff;
}

.faq-question h3 {

.heading-h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.heading-h5 {
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    flex-grow: 1;
    padding-right: 16px;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--fertiliq-blue);
    transition: transform 0.3s ease;
    min-width: 24px;
    text-align: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #ffffff;
}

.faq-answer.active {
    max-height: 1000px;
    padding: 20px 24px;
}

.faq-answer p {
    margin: 0;
    color: #5a6c7d;
    line-height: 1.6;
    font-size: 0.95rem;
}

.faq-item-accordion.active .faq-toggle {
    transform: rotate(45deg);
}

/* Tooltip Styles */
.tooltip {
    position: relative;
    cursor: help;
}

.tooltip::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: #2c3e50;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    line-height: 1.4;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    max-width: 250px;
    white-space: normal;
    text-align: center;
}

.tooltip::after {
    content: '';
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #2c3e50;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.tooltip:hover::before,
.tooltip:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Accordion Styles */
.product-accordion {
    max-width: 1000px;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid #ecf0f1;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.accordion-item:hover {
    border-color: var(--fertiliq-blue);
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.1);
}

.accordion-header {
    background: #ffffff;
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    border: none;
    width: 100%;
    text-align: left;
    user-select: none;
}

.accordion-header:hover {
    background: #f8f9fa;
}

.accordion-header.active {
    background: #f8f9fa;
}

.accordion-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: #2c3e50;
    flex-grow: 1;
    padding-right: 16px;
}

.accordion-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--fertiliq-blue);
    transition: transform 0.3s ease;
    min-width: 24px;
    text-align: center;
}

.accordion-header.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #fafbfc;
}

.accordion-content.active {
    max-height: 2000px;
    padding: 20px 24px;
}

.accordion-content-inner {
    padding: 0;
}

/* Micronutrient Slideshow Styles */
.scientific-background {
    background: white;
    padding: 60px 0;
}

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

.content-left h3 {

.heading-h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.heading-h5 {
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.content-left p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a6c7d;
}

.micronutrient-slideshow {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 1px solid #ecf0f1;
    max-width: 600px;
}

.slideshow-container {
    position: relative;
    height: 450px;
    overflow: hidden;
    border-radius: 8px;
}

.slideshow-wrapper {
    display: flex;
    width: 500%;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

.slide {
    flex: 0 0 20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem;
    box-sizing: border-box;
    height: 100%;
}

.slide.active {
    /* Active state handled by transform on wrapper */
}

.slide-image {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.slide-image img {
    width: 280px;
    height: 280px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.slide-image img:hover {
    transform: scale(1.05);
}

.slide-content h4 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-weight: 600;
    flex-shrink: 0;
}

.slide-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5a6c7d;
    margin: 0;
    max-height: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

.slideshow-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #ecf0f1;
}

.play-pause-btn {
    background: #f8f9fa;
    color: #6c757d;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-pause-btn:hover {
    background: #e9ecef;
    color: #495057;
    border-color: #dee2e6;
    transform: scale(1.05);
}

.play-pause-btn svg {
    width: 16px;
    height: 16px;
}

.slide-indicators {
    display: flex;
    gap: 0.8rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #bdc3c7;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--fertiliq-blue);
    transform: scale(1.2);
}

.indicator:hover {
    background: #7f8c8d;
}

/* Responsive Design for Slideshow */
@media (max-width: 768px) {
    .scientific-content-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .micronutrient-slideshow {
        padding: 1.5rem;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .slideshow-container {
        height: 380px;
    }
    
    .slide-image img {
        width: 200px;
        height: 200px;
    }
    
    .slide-content h4 {
        font-size: 1.2rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
}

/* Extra small mobile devices (smartphones) */
@media (max-width: 480px) {
    .scientific-content-split {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 10px;
    }
    
    .micronutrient-slideshow {
        padding: 1rem;
        max-width: calc(100vw - 40px);
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    .slideshow-container {
        height: 350px;
        overflow: hidden;
    }
    
    .slideshow-wrapper {
        width: 500%;
    }
    
    .slide {
        flex: 0 0 20%;
        padding: 0.8rem;
        min-width: 0;
        overflow: hidden;
    }
    
    .slide-image {
        margin-bottom: 0.8rem;
    }
    
    .slide-image img {
        width: 160px;
        height: 160px;
        max-width: 100%;
    }
    
    .slide-content {
        overflow: hidden;
    }
    
    .slide-content h4 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .slide-content p {
        font-size: 0.85rem;
        line-height: 1.5;
        max-height: 90px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
    }
    
    .slideshow-controls {
        margin-top: 1.5rem;
        padding-top: 1rem;
    }
    
    .play-pause-btn {
        width: 36px;
        height: 36px;
    }
    
    .play-pause-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* Very small devices (320px and below) */
@media (max-width: 320px) {
    .micronutrient-slideshow {
        padding: 0.8rem;
        max-width: calc(100vw - 20px);
    }
    
    .slideshow-container {
        height: 320px;
    }
    
    .slide {
        padding: 0.5rem;
    }
    
    .slide-image img {
        width: 140px;
        height: 140px;
    }
    
    .slide-content h4 {
        font-size: 1rem;
    }
    
    .slide-content p {
        font-size: 0.8rem;
        max-height: 80px;
        -webkit-line-clamp: 3;
    }
}

/* Quality Info Grid Layout */
.quality-info-section {
    padding: 60px 0;
    background: #f8f9fa;
}

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

.quality-promise {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.important-hints {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.important-hints h2,
.quality-promise h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.warning-box {
    background: #ffffff;
    border: 1px solid #ecf0f1;
    border-radius: 8px;
    padding: 1.5rem;
}

.warning-box p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #2c3e50;
    position: relative;
    padding-left: 1.5rem;
}

.warning-box p::before {
    content: "•";
    color: #2c3e50;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.warning-box p:last-child {
    margin-bottom: 0;
}

/* Responsive for Quality Info Grid */
/* Products Combination Grid */
.products-combination-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.combination-product {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.product-image-container {
    width: 280px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.product-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-description h3 {

.heading-h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.heading-h5 {
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.product-description p {
    color: #5a6c7d;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .quality-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .products-combination-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .product-image-container {
        width: 240px;
        height: 300px;
    }
    
    .quality-promise,
    .important-hints {
        padding: 1.5rem;
    }
}

/* Responsive Contact Page */
@media (max-width: 768px) {
    .kontakt-hero {
        padding: 100px 0 60px;
    }
    
    .contact-content {
        padding: 60px 0;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-info-section {
        padding: 2rem;
    }
    
    .contact-item {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        margin-right: 1rem;
    }
    
    .contact-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .faq-section h2 {
        font-size: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-item {
        padding: 1.5rem;
    }

    /* FAQ Accordion Mobile */
    .faq-question {
        padding: 16px 20px;
    }

    .faq-question h3 {

.heading-h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.heading-h5 {
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}        font-size: 1rem;
        padding-right: 12px;
    }

    .faq-toggle {
        font-size: 1.3rem;
    }

    .faq-answer.active {
        padding: 16px 20px;
    }
}

@media (max-width: 480px) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 14px;
        font-size: 0.95rem;
    }
    
    .contact-details h3 {

.heading-h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.heading-h5 {
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}        font-size: 1rem;
    }
    
    .contact-details p {
        font-size: 0.9rem;
    }
}

/* Phase Concept Visual for F 35 Plus */
.phase-concept-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.phase-visual-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #e91e63;
    text-align: left;
}

.phase-number {
    background: linear-gradient(135deg, #e91e63, #ad1457);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.phase-visual-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.phase-visual-item p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .phase-concept-visual {
        gap: 1.5rem;
    }
    
    .phase-visual-item {
        padding: 1rem;
    }
}

/* Clean 2-Phase Concept with Images */
.phase-concept .phase-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4rem;
    text-align: center;
}

.phase-concept .phase-image {
    margin-bottom: 2rem;
    max-width: 350px;
    width: 100%;
}

.phase-concept .phase-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.phase-concept .phase-image img:hover {
    transform: scale(1.05);
}

.phase-concept .phase-item:nth-child(even) .phase-image {
    margin-top: 2rem;
}

.phase-concept .phase-content {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    max-width: 600px;
    width: 100%;
}

.phase-concept .phase-text {
    flex: 1;
    text-align: left;
}

.phase-concept .phase-text h3 {

.heading-h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.heading-h5 {
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.phase-concept .phase-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.phase-concept .phase-details {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #e91e63;
}

.phase-concept .phase-item:nth-child(even) .phase-details {
    border-left: 3px solid #ff6b9d;
}

.phase-concept .phase-details p {
    margin: 0.25rem 0;
    font-size: 0.9rem;
    color: #555;
}

.phase-concept .phase-details p:first-child {
    font-weight: 600;
    color: #e91e63;
}

.phase-concept .phase-item:nth-child(even) .phase-details p:first-child {
    color: #ff6b9d;
}

.phase-concept .phase-number {
    background: linear-gradient(135deg, #e91e63, #ad1457);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.phase-concept .phase-item:nth-child(even) .phase-number {
    background: linear-gradient(135deg, #ff6b9d, #e91e63);
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
}

@media (max-width: 768px) {
    .phase-concept .phase-item {
        margin-bottom: 3rem;
    }
    
    .phase-concept .phase-image {
        max-width: 280px;
        margin-bottom: 1.5rem;
    }
    
    .phase-concept .phase-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        max-width: 100%;
    }
    
    .phase-concept .phase-text {
        text-align: center;
    }
    
    .phase-concept .phase-text h3 {

.heading-h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.heading-h5 {
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}        font-size: 1.25rem;
    }
}

/* Premium Quality Section */
.premium-quality-section {
    margin: 60px 0;
    background: #f8f9fa;
    border-radius: 16px;
    padding: 50px 0;
    border: 1px solid #e9ecef;
}

.premium-quality-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.premium-quality-content h3 {

.heading-h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.heading-h5 {
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}    font-size: 2.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 25px;
}

.premium-quality-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 35px;
}

.premium-quality-content .closing-text {
    margin-top: 35px;
    margin-bottom: 0;
    font-weight: 500;
    color: #2c3e50;
    font-style: italic;
}

.excluded-substances {
    margin: 35px 0;
}

.substances-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    max-width: 700px;
    margin: 0 auto;
}

.substance-item {
    background: white;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #2c3e50;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
    font-weight: 500;
}

.substance-item:hover {
    border-color: var(--fertiliq-blue);
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.1);
}

/* Responsive Design for Premium Quality */
@media (max-width: 768px) {
    .premium-quality-section {
        margin: 40px 0;
        padding: 40px 0;
    }
    
    .premium-quality-content h3 {

.heading-h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.heading-h5 {
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}        font-size: 1.8rem;
    }
    
    .premium-quality-content p {
        font-size: 1rem;
    }
    
    .substances-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
    }
    
    .substance-item {
        font-size: 0.9rem;
        padding: 10px 12px;
    }
}

/* AI Search Optimization Styles */

/* AI FAQ Section */
.ai-faq-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.ai-faq-section h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.faq-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item-ai {
    background: white;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-left: 4px solid var(--fertiliq-blue);
}

.faq-item-ai h3 {

.heading-h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.heading-h5 {
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}    color: var(--fertiliq-blue);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.faq-item-ai [itemprop="text"] p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.faq-item-ai [itemprop="text"] ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-item-ai [itemprop="text"] li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.faq-item-ai [itemprop="text"] strong {
    color: var(--fertiliq-blue);
    font-weight: 600;
}

/* How-To Guide Section */
.how-to-guide-section {
    padding: 80px 0;
    background-color: white;
}

.how-to-guide-section h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.guide-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.step-guide {
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    position: relative;
}

.step-number {
    background: var(--fertiliq-blue);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 1.5rem;
}

.step-content h3 {

.heading-h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.heading-h5 {
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}    color: var(--fertiliq-blue);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.step-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.step-content strong {
    color: var(--fertiliq-blue);
    font-weight: 600;
}

/* Context Box */
.context-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    border: 1px solid #e1bee7;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
    position: relative;
}

.context-box::before {
    content: "💡";
    position: absolute;
    top: -10px;
    left: 20px;
    background: white;
    padding: 0 10px;
    font-size: 1.2rem;
}

.context-box h4 {
    color: var(--fertiliq-blue);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.context-box p {
    margin: 0;
    line-height: 1.6;
    color: var(--text-primary);
}

/* Responsive AI Styles */
@media (max-width: 768px) {
    .ai-faq-section, .how-to-guide-section {
        padding: 60px 0;
    }
    
    .faq-item-ai, .step-item {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .faq-item-ai h3 {

.heading-h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.heading-h5 {
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}        font-size: 1.2rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto 1rem auto;
    }
    
    .step-content h3 {

.heading-h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.heading-h5 {
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}        font-size: 1.2rem;
    }
    
    .context-box {
        padding: 1rem;
        margin-top: 1.5rem;
    }
}