html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: #fef9f3;
    margin: 0;
    color: #3d2817;
    padding-top: 90px;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, #f5e6d3 0%, #fcecd7 100%);
    padding: 0.8rem 1rem;
    border-bottom: 3px solid #e67e50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(230, 126, 80, 0.2);
    flex-wrap: wrap;
    gap: 0.5rem;
    box-sizing: border-box;
}

header h1 {
    font-size: 1rem;
    margin: 0;
    color: #c74a4a;
    white-space: nowrap;
}

nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.2rem;
    align-items: center;
}

nav a {
    margin: 0 0.25rem;
    padding: 0.2rem 0.4rem;
    text-decoration: none;
    color: #8b4513;
    font-weight: 500;
    white-space: nowrap;
    font-size: 0.85rem;
    transition: color 0.3s;
}

nav a:hover {
    color: #c74a4a;
    text-decoration: underline;
}

.hero {
    background: url('images/herbs-banner.png') center/cover no-repeat;
    padding: 8rem 2rem;
    text-align: center;
    color: white;
    background-color: rgba(139, 139, 139, 0.6);
    background-blend-mode: multiply;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero h2 {
    font-size: xx-large;
    color: aliceblue;
}

section {
    max-width: 950px;
    margin: auto;
    padding: 1rem 2rem;
}

footer {
    background: linear-gradient(135deg, #f5e6d3 0%, #fcecd7 100%);
    text-align: center;
    padding: 2rem;
    color: #8b4513;
    border-top: 3px solid #e67e50;
}

.image-section {
    text-align: center;
    margin: 2rem 0;
}

.image-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(230, 126, 80, 0.3);
    margin-bottom: 1rem;
    border: 2px solid #f5c243;
}

.download-link {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: linear-gradient(135deg, #5aa376 0%, #4a9d6b 100%);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: 0 2px 6px rgba(74, 157, 107, 0.3);
}

.download-link:hover {
    background: linear-gradient(135deg, #4a9d6b 0%, #3d8759 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(74, 157, 107, 0.4);
}

h2, h3, h4 {
    color: #c74a4a;
}

section a {
    color: #e67e50;
    transition: color 0.3s;
}

section a:hover {
    color: #c74a4a;
}

ul {
    color: #3d2817;
}

strong {
    color: #8b4513;
}

#kontakt a[href^="tel:"] {
    color: #e67e50;
    font-weight: 600;
    text-decoration: none;
}

#kontakt a[href^="tel:"]:hover {
    color: #c74a4a;
    text-decoration: underline;
}

.social-share {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e67e50;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.share-btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.share-btn.facebook {
    background-color: #1877f2;
    color: white;
}

.share-btn.facebook:hover {
    background-color: #145dbf;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(24, 119, 242, 0.3);
}

.share-btn.twitter {
    background-color: #1da1f2;
    color: white;
}

.share-btn.twitter:hover {
    background-color: #0c85d0;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(29, 161, 242, 0.3);
}

.share-btn.linkedin {
    background-color: #0077b5;
    color: white;
}

.share-btn.linkedin:hover {
    background-color: #005885;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 119, 181, 0.3);
}

.share-btn.email {
    background-color: #ea4335;
    color: white;
}

.share-btn.email:hover {
    background-color: #c23321;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(234, 67, 53, 0.3);
}

.footer-nav {
    margin: 1rem 0;
    font-size: 0.9rem;
}

.footer-nav a {
    color: #8b4513;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #c74a4a;
    text-decoration: underline;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    background: #c74a4a;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(199, 74, 74, 0.3);
    transition: all 0.3s;
    margin: 0.5rem;
}

.cta-button:hover {
    background: #a83838;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(199, 74, 74, 0.4);
}

.cta-button-secondary {
    display: inline-block;
    background: #5aa376;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(90, 163, 118, 0.3);
    transition: all 0.3s;
    margin: 0.5rem;
}

.cta-button-secondary:hover {
    background: #4a9d6b;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(90, 163, 118, 0.4);
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, #f5e6d3 0%, #fcecd7 100%);
    padding: 3rem 2rem;
    border-radius: 12px;
    margin: 2rem auto;
}

.testimonials h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

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

.testimonial-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #5aa376;
}

.testimonial-text {
    font-style: italic;
    color: #3d2817;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: #8b4513;
    text-align: right;
    margin: 0;
}

/* Quick Check / Questionnaire */
.quick-check {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.quick-check h2 {
    text-align: center;
    font-size: 2rem;
}

.quick-check h3 {
    text-align: center;
    font-size: 1.4rem;
    color: #8b4513;
    margin-top: -0.5rem;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.check-item {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    background: #fef9f3;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.check-item:hover {
    background: #f5e6d3;
    border-color: #5aa376;
}

.check-item input[type="checkbox"] {
    margin-right: 1rem;
    margin-top: 0.2rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.check-item span {
    flex: 1;
    line-height: 1.6;
}

.crisis-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #fff3cd;
    border-left: 4px solid #c74a4a;
    border-radius: 8px;
}

/* Issues Section */
.issues {
    padding: 3rem 2rem;
}

.issues h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

.issue-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border-top: 4px solid #5aa376;
}

.issue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.issue-card h4 {
    margin-top: 0;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.issue-card p {
    color: #3d2817;
    line-height: 1.5;
    margin: 0;
}

/* Process Section */
.process-section {
    background: linear-gradient(135deg, #f5e6d3 0%, #fcecd7 100%);
    padding: 3rem 2rem;
    border-radius: 12px;
    margin: 2rem auto;
}

.process-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-number {
    min-width: 50px;
    height: 50px;
    background: #5aa376;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: #c74a4a;
}

.step p {
    margin: 0;
    line-height: 1.6;
}

.trust-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
    border-left: 4px solid #5aa376;
}

.trust-box h4 {
    margin-top: 0;
    font-size: 1.4rem;
}

.trust-box ul {
    list-style: none;
    padding: 0;
}

.trust-box li {
    padding: 0.5rem 0;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 3rem 2rem;
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.faq-item h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq-item p {
    margin: 0;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f5e6d3 0%, #fcecd7 100%);
    border-radius: 12px;
    margin: 2rem auto;
}

.pricing-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

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

.pricing-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 3px solid #5aa376;
}

.pricing-header {
    background: linear-gradient(135deg, #5aa376 0%, #4a9d6b 100%);
    color: white;
    padding: 2rem;
    text-align: center;
}

.pricing-header h3 {
    margin: 0 0 1rem 0;
    color: white;
    font-size: 1.5rem;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    margin: 0.5rem 0;
}

.duration {
    margin: 0;
    opacity: 0.9;
}

.pricing-body {
    padding: 2rem;
}

.pricing-description {
    text-align: center;
    color: #8b4513;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.pricing-features {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    line-height: 1.6;
    border-bottom: 1px solid #f5e6d3;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-info {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.pricing-info h4 {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

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

.info-item {
    padding: 1rem;
    background: #fef9f3;
    border-radius: 8px;
    border-left: 4px solid #e67e50;
}

.info-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #c74a4a;
}

.info-item p {
    margin: 0;
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 3rem 2rem;
}

.about-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.about-intro .lead {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.highlight-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #5aa376;
}

.highlight-item strong {
    display: block;
    color: #c74a4a;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.highlight-item p {
    margin: 0;
    line-height: 1.6;
}

.expandable-content {
    margin-top: 2rem;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.expandable-content summary {
    cursor: pointer;
    color: #c74a4a;
    font-size: 1.1rem;
    padding: 0.5rem;
}

.expandable-content summary:hover {
    color: #a83838;
}

.expanded-bio {
    padding-top: 1rem;
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f5e6d3 0%, #fcecd7 100%);
    border-radius: 12px;
}

.contact-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.contact-intro {
    text-align: center;
    font-size: 1.2rem;
    font-style: italic;
    color: #8b4513;
    margin-bottom: 2rem;
}

.contact-cta-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 2rem;
}

.contact-cta-box h3 {
    margin-top: 0;
    font-size: 1.5rem;
}

.contact-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.contact-method-primary {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #5aa376 0%, #4a9d6b 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(90, 163, 118, 0.3);
    transition: all 0.3s;
    min-width: 250px;
}

.contact-method-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(90, 163, 118, 0.4);
    background: linear-gradient(135deg, #4a9d6b 0%, #3d8759 100%);
}

.contact-method-primary .icon {
    font-size: 2rem;
}

.contact-method-primary strong {
    color: white;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.3rem;
}

.contact-method-primary p {
    margin: 0;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.response-time {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #f5e6d3;
    color: #8b4513;
    font-size: 0.95rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.contact-info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #e67e50;
}

.contact-info-card h4 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.contact-info-card p {
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.helpful-resources {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.helpful-resources h4 {
    margin-top: 0;
    text-align: center;
    margin-bottom: 1rem;
}

.helpful-resources ul {
    list-style: none;
    padding: 0;
}

.helpful-resources li {
    padding: 0.5rem 0;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonial-grid,
    .issues-grid,
    .faq-grid,
    .pricing-grid,
    .about-highlights,
    .contact-info-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding: 5rem 1rem;
    }
    
    header h1 {
        font-size: 0.9rem;
    }
    
    nav a {
        font-size: 0.75rem;
        padding: 0.2rem 0.3rem;
    }
    
    .contact-methods {
        flex-direction: column;
    }
    
    .contact-method-primary {
        min-width: auto;
        width: 100%;
    }
}