:root {
    --waste-primary: #2d5016;
    --waste-secondary: #f39c12;
    --waste-dark: #1a1a1a;
    --waste-light: #f8f9fa;
    --waste-accent: #27ae60;
    --waste-text: #333333;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--waste-text);
    line-height: 1.6;
    background-color: #ffffff;
}

.removal-top-bar {
    background: linear-gradient(135deg, var(--waste-primary) 0%, #3d6b1f 100%);
    padding: 1.2rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.brand-identity {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
}

.brand-symbol {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.brand-text {
    letter-spacing: -0.5px;
}

.site-navigation {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
    margin: 0;
}

.site-navigation a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.site-navigation a:hover,
.site-navigation a.nav-active {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.champion-area {
    background: linear-gradient(135deg, rgba(45,80,22,0.95) 0%, rgba(61,107,31,0.95) 100%),
                url('/image_files/hero-background-dd04494351d746c4873e405435ff6e75.jpg') center/cover no-repeat;
    padding: 8rem 0;
    color: white;
    text-align: center;
    position: relative;
}

.champion-headline {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.champion-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: rgba(255,255,255,0.95);
}

.champion-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-action-btn,
.secondary-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    min-height: 54px;
    white-space: nowrap;
}

.primary-action-btn {
    background: var(--waste-secondary);
    color: var(--waste-dark);
    box-shadow: 0 4px 12px rgba(243,156,18,0.3);
}

.primary-action-btn:hover {
    background: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(243,156,18,0.4);
    color: var(--waste-dark);
}

.secondary-action-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.secondary-action-btn:hover {
    background: white;
    color: var(--waste-primary);
    transform: translateY(-3px);
}

.segment-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--waste-primary);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.segment-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--waste-secondary);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.advantages-showcase {
    padding: 5rem 0;
    background: var(--waste-light);
}

.advantage-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    height: 100%;
}

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

.advantage-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.advantage-card h3 {
    font-size: 1.5rem;
    color: var(--waste-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.company-intro {
    padding: 5rem 0;
}

.intro-visual {
    border-radius: 12px;
    width: 100%;
    height: auto;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.learn-more-link {
    display: inline-flex;
    align-items: center;
    color: var(--waste-secondary);
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.learn-more-link:hover {
    color: var(--waste-primary);
    transform: translateX(5px);
}

.services-preview {
    padding: 5rem 0;
    background: var(--waste-light);
}

.service-tile {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.service-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-tile h3 {
    font-size: 1.3rem;
    color: var(--waste-primary);
    margin: 1.5rem 1.5rem 1rem;
    font-weight: 600;
}

.service-description {
    padding: 0 1.5rem;
    color: #666;
    flex-grow: 1;
}

.service-rate {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--waste-secondary);
    padding: 1.5rem;
    margin: 0;
}

.testimonials-area {
    padding: 5rem 0;
}

.testimonial-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-box:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.rating-stars {
    color: var(--waste-secondary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-content {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: var(--waste-primary);
    margin: 0;
}

.author-role {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
}

.contact-preview {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--waste-primary) 0%, #3d6b1f 100%);
    color: white;
}

.contact-preview .segment-title {
    color: white;
}

.contact-preview .segment-title::after {
    background: var(--waste-secondary);
}

.contact-intro-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: var(--waste-secondary);
}

.contact-icon {
    font-size: 1.5rem;
}

.site-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

.site-footer h4 {
    color: var(--waste-secondary);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--waste-secondary);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
}

.cookie-consent-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    max-width: 500px;
    z-index: 9999;
    border-left: 4px solid var(--waste-secondary);
}

.cookie-message {
    margin-bottom: 1rem;
    color: var(--waste-text);
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn-accept,
.cookie-btn-decline {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--waste-primary);
    color: white;
}

.cookie-btn-accept:hover {
    background: #3d6b1f;
    transform: translateY(-2px);
}

.cookie-btn-decline {
    background: #e0e0e0;
    color: var(--waste-text);
}

.cookie-btn-decline:hover {
    background: #d0d0d0;
}

.page-hero-simple {
    background: linear-gradient(135deg, var(--waste-primary) 0%, #3d6b1f 100%);
    padding: 4rem 0;
    color: white;
    text-align: center;
}

.page-hero-simple h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-lead {
    font-size: 1.3rem;
    opacity: 0.95;
}

.story-section,
.mission-section,
.team-section,
.values-section {
    padding: 4rem 0;
}

.mission-section {
    background: var(--waste-light);
}

.mission-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.8;
    color: #555;
}

.story-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.team-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

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

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 4px solid var(--waste-light);
}

.team-card h3 {
    color: var(--waste-primary);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--waste-secondary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.value-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.value-item h3 {
    color: var(--waste-primary);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.services-detailed {
    padding: 4rem 0;
}

.service-detail-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

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

.service-detail-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-detail-card h3 {
    font-size: 1.5rem;
    color: var(--waste-primary);
    margin: 1.5rem 1.5rem 1rem;
    font-weight: 600;
}

.service-detail-card p {
    padding: 0 1.5rem 1rem;
    color: #666;
    line-height: 1.7;
}

.service-price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--waste-secondary);
    padding: 0 1.5rem 1.5rem !important;
    margin: 0;
}

.cta-section {
    background: linear-gradient(135deg, var(--waste-primary) 0%, #3d6b1f 100%);
    padding: 5rem 0;
    color: white;
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.form-field {
    margin-bottom: 1.5rem;
}

.form-field label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--waste-primary);
    font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--waste-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(45,80,22,0.1);
}

.form-field textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn-form {
    background: var(--waste-secondary);
    color: var(--waste-dark);
    padding: 1rem 3rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 54px;
}

.submit-btn-form:hover {
    background: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(243,156,18,0.4);
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.contact-info-box {
    background: var(--waste-light);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--waste-secondary);
}

.contact-info-box h3 {
    color: var(--waste-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-info-box p {
    margin: 0.5rem 0;
    color: #555;
}

.contact-info-box a {
    color: var(--waste-secondary);
    text-decoration: none;
    font-weight: 600;
}

.contact-info-box a:hover {
    color: var(--waste-primary);
}

@media screen and (max-width: 768px) {
    .site-navigation {
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .site-navigation a {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }

    .champion-headline {
        font-size: 2.2rem;
    }

    .champion-subtitle {
        font-size: 1.1rem;
    }

    .champion-buttons {
        flex-direction: column;
        align-items: center;
    }

    .primary-action-btn,
    .secondary-action-btn {
        width: 100%;
        max-width: 300px;
    }

    .segment-title {
        font-size: 2rem;
    }

    .contact-details-row {
        flex-direction: column;
        align-items: center;
    }

    .cookie-consent-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
    }

    .contact-form-container {
        padding: 2rem 1.5rem;
    }
}
