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

:root {
    --primary-color: #00d084;
    --secondary-color: #00a86b;
    --dark-color: #1a1a1a;
    --light-color: #ffffff;
    --gray-color: #f5f5f5;
    --text-color: #333333;
    --border-color: #e0e0e0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

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

.main-header {
    background-color: var(--light-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 5px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background-color: rgba(0, 208, 132, 0.1);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    transition: var(--transition);
}

.hero-banner {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.8), rgba(0, 168, 107, 0.6));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--light-color);
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 30px;
    font-weight: 300;
}

.btn-primary,
.btn-secondary,
.btn-cta,
.btn-outline {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.features-section,
.mistakes-section,
.sustainability-section,
.team-section,
.values-section,
.blog-section {
    padding: 80px 0;
}

.section-heading,
.section-heading-alt,
.section-heading-left {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.section-heading-alt {
    color: var(--primary-color);
}

.section-heading-left {
    text-align: left;
}

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

.feature-card {
    background-color: var(--light-color);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.feature-description {
    color: #666;
    line-height: 1.8;
}

.mistakes-section {
    background-color: var(--gray-color);
}

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

.mistake-item {
    background-color: var(--light-color);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    display: flex;
    gap: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.mistake-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.mistake-number {
    background-color: var(--primary-color);
    color: var(--light-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.mistake-heading {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.mistake-text {
    color: #666;
    line-height: 1.8;
}

.sustainability-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-main-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.sustainability-text,
.about-description {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.sustainability-list {
    margin: 30px 0;
}

.sustainability-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    color: #666;
}

.sustainability-list li strong {
    color: var(--primary-color);
    font-weight: 600;
}

.sustainability-image img,
.img-responsive {
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-color);
    text-align: center;
    padding: 80px 0;
}

.cta-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

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

.btn-cta {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.btn-cta:hover {
    background-color: var(--dark-color);
    color: var(--light-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--light-color);
    border-color: var(--light-color);
}

.btn-outline:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.main-footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 40px;
}

.footer-heading {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-text {
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    transition: var(--transition);
}

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

.footer-contact li {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    color: #ccc;
    align-items: flex-start;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--light-color);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 25px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-title {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.cookie-text {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-accept {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.cookie-accept:hover {
    background-color: var(--secondary-color);
}

.cookie-customize {
    background-color: var(--gray-color);
    color: var(--dark-color);
}

.cookie-customize:hover {
    background-color: #e0e0e0;
}

.cookie-decline {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--border-color);
}

.cookie-decline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.cookie-link {
    color: var(--primary-color);
    text-decoration: underline;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 100px 0 80px;
    text-align: center;
    color: var(--light-color);
    position: relative;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-description {
    font-size: 20px;
    opacity: 0.95;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 35px;
}

.blog-card {
    background-color: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.blog-content {
    padding: 30px;
}

.blog-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
    line-height: 1.4;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: #999;
    font-size: 14px;
    align-items: center;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-excerpt {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.btn-read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.btn-read-more:hover {
    gap: 8px;
}

.about-intro {
    padding: 60px 0;
}

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

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-member {
    text-align: center;
}

.team-image-wrapper {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.team-photo {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.team-member:hover .team-photo {
    transform: scale(1.05);
}

.team-name {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.team-position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-bio {
    color: #666;
    line-height: 1.8;
}

.values-section {
    background-color: var(--gray-color);
}

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

.value-card {
    background-color: var(--light-color);
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    margin-bottom: 20px;
}

.value-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.value-text {
    color: #666;
    line-height: 1.8;
}

.contact-section {
    padding: 60px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-heading,
.form-heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.contact-intro {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    flex-shrink: 0;
}

.contact-label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.contact-value {
    color: #666;
    line-height: 1.8;
}

.contact-value a {
    color: var(--primary-color);
}

.contact-form {
    background-color: var(--gray-color);
    padding: 40px;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-submit-btn {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.form-submit-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.map-section {
    padding: 60px 0;
    background-color: var(--gray-color);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--light-color);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    box-shadow: var(--shadow-lg);
    transform: scale(0.8);
    transition: var(--transition);
}

.modal-overlay.show .modal-content {
    transform: scale(1);
}

.modal-icon {
    margin-bottom: 20px;
}

.modal-title {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.modal-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.modal-close-btn {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 12px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close-btn:hover {
    background-color: var(--secondary-color);
}

.post-article {
    background-color: var(--light-color);
}

.post-hero {
    position: relative;
    height: 500px;
}

.post-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--light-color);
    padding: 60px 0 40px;
}

.post-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.post-meta-info {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    opacity: 0.9;
}

.post-date,
.post-reading-time,
.post-category {
    font-size: 15px;
}

.post-content-wrapper {
    padding: 60px 0;
}

.post-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
}

.post-main-content {
    max-width: 100%;
}

.post-intro {
    font-size: 20px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
    font-weight: 300;
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
}

.post-heading {
    font-size: 30px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: var(--dark-color);
}

.post-main-content p {
    margin-bottom: 20px;
    line-height: 1.9;
    color: #555;
    font-size: 17px;
}

.post-inline-image {
    margin: 40px 0;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.post-conclusion {
    background-color: var(--gray-color);
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
}

.post-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-color);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 40px;
}

.post-cta h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.post-cta p {
    margin-bottom: 25px;
    opacity: 0.95;
}

.post-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background-color: var(--gray-color);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.sidebar-heading {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.related-posts li,
.categories-list li {
    margin-bottom: 12px;
}

.related-posts a,
.categories-list a {
    color: #666;
    transition: var(--transition);
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.related-posts a:hover,
.categories-list a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

@media (max-width: 1024px) {
    .sustainability-grid,
    .contact-wrapper,
    .post-layout {
        grid-template-columns: 1fr;
    }

    .post-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--light-color);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-heading,
    .section-heading-alt {
        font-size: 30px;
    }

    .features-grid,
    .blog-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 36px;
    }

    .post-title {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        height: 400px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .brand-name {
        font-size: 18px;
    }

    .post-hero {
        height: 300px;
    }

    .contact-form {
        padding: 25px;
    }
}