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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #1a1a1a;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: #b0b0b0;
}

a {
    color: #bdff52;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #a3e045;
}

/* Buttons */
.btn-primary {
    background-color: #bdff52;
    color: #1a1a1a;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    background-color: #a3e045;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(189, 255, 82, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #bdff52;
    padding: 12px 24px;
    border: 2px solid #bdff52;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-secondary:hover {
    background-color: #bdff52;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.btn-tertiary {
    background-color: #333333;
    color: #e0e0e0;
    padding: 8px 16px;
    border: 1px solid #555555;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-tertiary:hover {
    background-color: #444444;
    border-color: #bdff52;
}

/* Header */
.header {
    background-color: #1a1a1a;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 40px;
    height: 40px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #bdff52;
}

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

.nav-link {
    color: #e0e0e0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #bdff52;
}

.hamburger {
    display: none;
    cursor: pointer;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.1;
    z-index: 1;
}

.hero-plant {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 60%;
    max-width: 600px;
    height: auto;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #b0b0b0;
}

.cta-button {
    background-color: #bdff52;
    color: #1a1a1a;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #a3e045;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(189, 255, 82, 0.3);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #bdff52;
}

.page-header p {
    font-size: 1.25rem;
    color: #b0b0b0;
    margin-bottom: 0.5rem;
}

.page-header small {
    color: #888888;
    font-size: 0.9rem;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #bdff52;
}

.section-header p {
    font-size: 1.1rem;
    color: #b0b0b0;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #1f1f1f;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    color: #bdff52;
    margin-bottom: 1.5rem;
}

.about-image {
    text-align: center;
}

.about-img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Advantages Section */
.advantages {
    padding: 80px 0;
    background-color: #1a1a1a;
}

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

.advantage-card {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.advantage-card h3 {
    color: #bdff52;
    margin-bottom: 1rem;
}

/* Products Section */
.products {
    padding: 80px 0;
    background-color: #1f1f1f;
}

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

.product-card {
    background-color: #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    color: #bdff52;
    margin-bottom: 0.5rem;
}

.product-category {
    color: #888888;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.rating-stars {
    width: 80px;
    height: 16px;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #bdff52;
    margin-bottom: 1rem;
}

.product-description {
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.5;
}

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

/* Achievements Section */
.achievements {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.achievement-card {
    text-align: center;
    padding: 2rem;
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: #bdff52;
    margin-bottom: 0.5rem;
}

.achievement-text {
    font-size: 1.1rem;
    color: #b0b0b0;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background-color: #1f1f1f;
}

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

.review-card {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
}

.review-rating {
    margin-bottom: 1rem;
}

.review-text {
    color: #b0b0b0;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.review-author strong {
    color: #bdff52;
    display: block;
    margin-bottom: 0.25rem;
}

.review-author span {
    color: #888888;
    font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background-color: #1a1a1a;
}

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

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #333333;
    border-radius: 8px;
    background-color: #2a2a2a;
    color: #e0e0e0;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #bdff52;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: #b0b0b0;
    font-weight: 500;
}

/* Footer */
.footer {
    background-color: #0f0f0f;
    padding: 60px 0 20px;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 40px;
    height: 40px;
}

.footer-brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #bdff52;
}

.footer-section h4 {
    color: #bdff52;
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: #b0b0b0;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #bdff52;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #b0b0b0;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #bdff52;
}

.social-link img {
    width: 24px;
    height: 24px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.contact-item img {
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #0f0f0f;
    padding: 1rem;
    z-index: 1000;
    border-top: 2px solid #bdff52;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

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

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
}

.cookie-option {
    margin-bottom: 1.5rem;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e0e0e0;
    font-weight: 500;
}

.cookie-option p {
    margin-top: 0.5rem;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Catalog Filters */
.catalog-filters {
    padding: 40px 0;
    background-color: #1f1f1f;
}

.filter-controls {
    text-align: center;
}

.filter-controls h3 {
    color: #bdff52;
    margin-bottom: 1.5rem;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: #2a2a2a;
    color: #e0e0e0;
    border: 2px solid #333333;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #bdff52;
    color: #1a1a1a;
    border-color: #bdff52;
}

.catalog-products {
    padding: 80px 0;
    background-color: #1a1a1a;
}

/* Care Guide Styles */
.care-section {
    padding: 80px 0;
    background-color: #1f1f1f;
}

.care-section:nth-child(even) {
    background-color: #1a1a1a;
}

.quick-nav {
    padding: 40px 0;
    background-color: #1a1a1a;
}

.quick-nav-items {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.quick-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background-color: #2a2a2a;
    border-radius: 12px;
    transition: transform 0.3s ease;
    color: #e0e0e0;
}

.quick-nav-item:hover {
    transform: translateY(-5px);
    color: #bdff52;
}

.quick-nav-item img {
    width: 40px;
    height: 40px;
}

.plant-recommendations {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.plant-rec {
    display: flex;
    gap: 2rem;
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
}

.plant-rec-img {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.plant-rec-info h4 {
    color: #bdff52;
    margin-bottom: 1rem;
}

.care-tips {
    list-style: none;
    margin-top: 1rem;
}

.care-tips li {
    padding: 0.25rem 0;
    color: #b0b0b0;
}

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

.tip-card {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.tip-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.tip-card h4 {
    color: #bdff52;
    margin-bottom: 1rem;
}

.care-basics-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.care-topic {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
}

.care-topic h3 {
    color: #bdff52;
    margin-bottom: 1.5rem;
}

.care-details {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.care-img {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.care-text ul {
    list-style: none;
}

.care-text li {
    margin-bottom: 0.75rem;
    color: #b0b0b0;
}

.care-text li strong {
    color: #bdff52;
}

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

.problem-card {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
}

.problem-card h3 {
    color: #bdff52;
    margin-bottom: 1.5rem;
}

.problem-content {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.problem-img {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.problem-text ul {
    list-style: none;
    margin-bottom: 1rem;
}

.problem-text li {
    margin-bottom: 0.5rem;
    color: #b0b0b0;
}

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

.season-card {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.season-card h3 {
    color: #bdff52;
    margin-bottom: 1rem;
}

.season-img {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.season-tasks ul {
    list-style: none;
    text-align: left;
}

.season-tasks li {
    margin-bottom: 0.5rem;
    color: #b0b0b0;
}

/* Contact Page Styles */
.contact-info-section {
    padding: 80px 0;
    background-color: #1f1f1f;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-main h2 {
    color: #bdff52;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.contact-text h3 {
    color: #bdff52;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: #b0b0b0;
    margin-bottom: 0.5rem;
}

.contact-text small {
    color: #888888;
}

.contact-text a {
    color: #bdff52;
}

.social-contact {
    margin-top: 2rem;
}

.social-contact h3 {
    color: #bdff52;
    margin-bottom: 1rem;
}

.contact-form-section {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
}

.contact-form-section h2 {
    color: #bdff52;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-group {
    flex: 1;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #b0b0b0;
    cursor: pointer;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #333333;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: #bdff52;
    border-color: #bdff52;
}

.contact-services {
    padding: 80px 0;
    background-color: #1a1a1a;
}

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

.service-card {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.service-card h3 {
    color: #bdff52;
    margin-bottom: 1rem;
}

.faq-section {
    padding: 80px 0;
    background-color: #1f1f1f;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #2a2a2a;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #333333;
}

.faq-question h3 {
    color: #bdff52;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #bdff52;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
}

.contact-hours {
    padding: 80px 0;
    background-color: #1a1a1a;
}

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

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

.hours-item {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
}

.hours-item h3 {
    color: #bdff52;
    margin-bottom: 1rem;
}

/* Legal Pages */
.legal-content {
    padding: 80px 0;
    background-color: #1a1a1a;
}

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

.legal-text {
    background-color: #2a2a2a;
    padding: 3rem;
    border-radius: 12px;
    line-height: 1.8;
}

.legal-text h2 {
    color: #bdff52;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-text h3 {
    color: #bdff52;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-text h4 {
    color: #e0e0e0;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.legal-text ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
    color: #b0b0b0;
}

.legal-text strong {
    color: #bdff52;
}

.legal-text a {
    color: #bdff52;
}

.legal-text a:hover {
    color: #a3e045;
}

/* Thanks Page */
.thanks-section {
    padding: 120px 0 80px;
    background-color: #1a1a1a;
    text-align: center;
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-img {
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.thanks-section h1 {
    font-size: 3rem;
    color: #bdff52;
    margin-bottom: 1rem;
}

.thanks-subtitle {
    font-size: 1.25rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
}

.thanks-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.thanks-message {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    text-align: left;
}

.thanks-message h2 {
    color: #bdff52;
    margin-bottom: 1.5rem;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.step-text h3 {
    color: #bdff52;
    margin-bottom: 0.5rem;
}

.step-text p {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.contact-urgency {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    text-align: left;
}

.contact-urgency h3 {
    color: #bdff52;
    margin-bottom: 1rem;
}

.urgent-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.urgent-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #bdff52;
    font-weight: 500;
}

.urgent-contact-item img {
    width: 20px;
    height: 20px;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.tips-section {
    padding: 80px 0;
    background-color: #1f1f1f;
}

.related-links {
    padding: 80px 0;
    background-color: #1a1a1a;
}

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

.link-card {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
    color: #e0e0e0;
}

.link-card:hover {
    transform: translateY(-5px);
    color: #bdff52;
}

.link-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.link-card h3 {
    color: #bdff52;
    margin-bottom: 1rem;
}

.newsletter-reminder {
    padding: 80px 0;
    background-color: #1f1f1f;
}

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

.newsletter-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefit-icon {
    width: 30px;
    height: 30px;
}

/* About Page Styles */
.about-story {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    color: #bdff52;
    margin-bottom: 1.5rem;
}

.story-image {
    text-align: center;
}

.story-img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.our-values {
    padding: 80px 0;
    background-color: #1f1f1f;
}

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

.value-card {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.value-card h3 {
    color: #bdff52;
    margin-bottom: 1rem;
}

.team-section {
    padding: 80px 0;
    background-color: #1a1a1a;
}

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

.team-member {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.team-info h3 {
    color: #bdff52;
    margin-bottom: 0.5rem;
}

.team-role {
    color: #888888;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.team-description {
    color: #b0b0b0;
    line-height: 1.6;
}

.mission-section {
    padding: 80px 0;
    background-color: #1f1f1f;
}

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

.mission-content h2 {
    color: #bdff52;
    margin-bottom: 1.5rem;
}

.mission-text {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.mission-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #bdff52;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.contact-cta {
    padding: 80px 0;
    background-color: #1a1a1a;
}

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

.cta-content h2 {
    color: #bdff52;
    margin-bottom: 1rem;
}

.cta-content p {
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: #1a1a1a;
        flex-direction: column;
        padding: 2rem;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        display: flex;
        top: 70px;
        transform: translateY(0);
    }

    .hamburger {
        display: block;
    }

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

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

    .about-content,
    .story-content,
    .contact-grid,
    .thanks-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .form-row {
        flex-direction: column;
    }

    .newsletter-benefits {
        flex-direction: column;
        gap: 1rem;
    }

    .mission-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .legal-text {
        padding: 2rem;
    }

    .contact-form-section {
        order: -1;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .legal-text {
        padding: 1.5rem;
    }

    .thanks-section h1 {
        font-size: 2rem;
    }

    .filter-buttons {
        justify-content: center;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    [class*="-grid"] {
        grid-template-columns: 1fr;
    }
    .plant-rec, .care-details, .problem-content {
        flex-direction: column;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

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

.text-right {
    text-align: right;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.d-none {
    display: none;
}

.d-block {
    display: block;
}

.d-flex {
    display: flex;
}

.justify-center {
    justify-content: center;
}

.align-center {
    align-items: center;
}

.gap-1 {
    gap: 1rem;
}

.gap-2 {
    gap: 2rem;
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus Styles */
*:focus {
    outline: 2px solid #bdff52;
    outline-offset: 2px;
}

/* Selection Styles */
::selection {
    background-color: #bdff52;
    color: #1a1a1a;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-left {
    animation: slideInFromLeft 0.6s ease-out;
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInFromRight 0.6s ease-out;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-modal,
    .newsletter,
    .social-links {
        display: none;
    }

    body {
        background-color: white;
        color: black;
    }

    .container {
        max-width: none;
        margin: 0;
        padding: 0;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    body {
        background-color: #000000;
        color: #ffffff;
    }

    .btn-primary {
        background-color: #ffffff;
        color: #000000;
        border: 2px solid #ffffff;
    }

    .btn-secondary {
        background-color: #000000;
        color: #ffffff;
        border: 2px solid #ffffff;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}
