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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

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

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

a:hover {
    color: #4d4d01;
}

/* Buttons */
.btn-primary {
    background-color: #636002;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #4d4d01;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 96, 2, 0.3);
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: #636002;
    padding: 12px 24px;
    border: 2px solid #636002;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

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

.btn-tertiary {
    background-color: #f8f8f8;
    color: #666;
    padding: 12px 24px;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-tertiary:hover {
    background-color: #e8e8e8;
    color: #333;
}

.cta-button {
    background: linear-gradient(135deg, #636002, #8a8603);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 96, 2, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(99, 96, 2, 0.3);
    color: white;
}

/* Header and Navigation */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem;
}

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

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

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

.nav-link {
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background-color: #636002;
    color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #636002, #8a8603);
}

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

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    color: white;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #636002, #8a8603);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

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

.page-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

/* Company Info */
.company-info {
    background-color: white;
}

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

.info-card {
    padding: 30px;
    border-radius: 12px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.info-card h3 {
    color: #636002;
    margin-bottom: 15px;
}

/* Benefits */
.benefits {
    background-color: #f8f8f8;
}

.benefits h2 {
    text-align: center;
    margin-bottom: 60px;
}

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

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background-color: #636002;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: bold;
}

.benefit-item h3 {
    color: #636002;
    margin-bottom: 15px;
}

/* Services */
.services-preview {
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.service-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

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

.service-card h3 {
    padding: 20px 20px 10px;
    color: #636002;
}

.service-card p {
    padding: 0 20px 20px;
}

.section-cta {
    text-align: center;
    margin-top: 40px;
}

/* Achievements */
.achievements {
    background-color: #636002;
    color: white;
}

.achievements h2 {
    color: white;
    text-align: center;
    margin-bottom: 60px;
}

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

.achievement-item {
    text-align: center;
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.achievement-item p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, #f8f8f8, #e8e8e8);
}

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

.newsletter h2 {
    margin-bottom: 20px;
}

.newsletter p {
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group input {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #636002;
}

/* Contact Info */
.contact-info {
    background-color: white;
}

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

.contact-item {
    text-align: center;
    padding: 30px 20px;
}

.contact-item h3 {
    color: #636002;
    margin-bottom: 15px;
}

/* Footer */
footer {
    background-color: #2c2c2c;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    color: white;
    margin-bottom: 20px;
}

.footer-section p {
    color: #ccc;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ccc;
    transition: color 0.3s ease;
}

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

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

.social-links a {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    color: #999;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: white;
    padding: 20px;
    z-index: 1001;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-banner.hidden {
    display: none;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1002;
}

.cookie-modal-content {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal h3 {
    margin-bottom: 20px;
    color: #636002;
}

.cookie-option {
    margin-bottom: 15px;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    margin-right: 10px;
}

/* About Page Styles */
.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.story-svg {
    width: 100%;
    max-width: 300px;
    height: auto;
}

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

.team-member {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.team-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.team-role {
    color: #636002;
    font-weight: 600;
    margin-bottom: 10px;
}

.team-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.team-specialties span {
    background-color: #636002;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
}

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

.value-item {
    text-align: center;
    padding: 30px 20px;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #636002;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: bold;
}

.cta-section {
    background: linear-gradient(135deg, #636002, #8a8603);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

/* Services Page Styles */
.service-card.featured {
    border: 3px solid #636002;
    transform: scale(1.02);
}

.service-content {
    padding: 30px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.service-features span {
    background-color: #f0f0f0;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    color: #636002;
}

.service-price {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.price {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #636002;
}

.price-note {
    font-size: 0.9rem;
    color: #666;
}

.service-cta {
    display: block;
    text-align: center;
    background-color: #636002;
    color: white;
    padding: 15px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.service-cta:hover {
    background-color: #4d4d01;
    color: white;
}

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

.specialized-item {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.specialized-price {
    display: block;
    color: #636002;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 15px;
}

.pricing-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.pricing-text ul {
    margin: 20px 0;
    padding-left: 20px;
}

.pricing-text li {
    margin-bottom: 8px;
}

.contact-box {
    background-color: #636002;
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.contact-box h3 {
    color: white;
    margin-bottom: 15px;
}

.contact-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-author {
    margin-top: 20px;
    font-weight: 600;
}

.testimonial-author span {
    display: block;
    color: #666;
    font-weight: normal;
    font-size: 0.9rem;
}

.testimonial-rating {
    margin-top: 15px;
    font-size: 1.2rem;
}

.faq-list {
    margin-top: 40px;
}

.faq-item {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    color: #636002;
    margin-bottom: 15px;
}

/* Trends Page Styles */
.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.trend-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

.trend-tag {
    background-color: #636002;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.trend-highlights {
    margin-top: 30px;
}

.highlight-item {
    margin-bottom: 25px;
}

.highlight-item h4 {
    color: #636002;
    margin-bottom: 8px;
}

.trends-container {
    margin-top: 60px;
}

.trend-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.trend-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.trend-card-content {
    padding: 30px;
}

.trend-category {
    background-color: #636002;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.trend-tips {
    margin-top: 20px;
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
}

.trend-tips ul {
    margin-top: 10px;
    padding-left: 20px;
}

.life-hacks {
    background-color: #f8f8f8;
}

.hacks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.hack-item {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.hack-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

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

.seasonal-item {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.seasonal-item h3 {
    color: #636002;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.seasonal-content p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.diy-projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.diy-project {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.diy-content h4 {
    color: #636002;
    margin: 20px 0 10px;
}

.diy-content ul,
.diy-content ol {
    padding-left: 20px;
    margin-bottom: 15px;
}

/* Contact Page Styles */
.contact-main {
    background-color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

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

.checkbox-group {
    flex-direction: row;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.contact-card {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 20px;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item strong {
    display: block;
    color: #636002;
    margin-bottom: 5px;
}

.contact-item small {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-top: 5px;
}

.emergency-contact {
    background-color: #636002;
    color: white;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 30px;
}

.emergency-contact h4 {
    color: white;
    margin-bottom: 10px;
}

.emergency-contact p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.emergency-button {
    background-color: white;
    color: #636002;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.emergency-button:hover {
    background-color: #f0f0f0;
    color: #636002;
}

.social-contact {
    text-align: center;
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background-color: #f8f8f8;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: #e8e8e8;
    color: #636002;
}

.consultation-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.consultation-step {
    text-align: center;
    padding: 30px 20px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.location-text ul {
    margin: 15px 0;
    padding-left: 20px;
}

.map-placeholder {
    background-color: #f0f0f0;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content h4 {
    color: #636002;
    margin-bottom: 15px;
}

.map-link {
    display: inline-block;
    margin-top: 15px;
    color: #636002;
    text-decoration: underline;
}

.faq-contact {
    background-color: #f8f8f8;
}

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

/* Legal Pages Styles */
.legal-hero {
    background-color: #636002;
    color: white;
    padding: 120px 0 60px;
    text-align: center;
    margin-top: 80px;
}

.legal-hero h1 {
    color: white;
    margin-bottom: 20px;
}

.legal-update {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.legal-content {
    background-color: white;
    padding: 80px 0;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
}

.legal-text h2 {
    color: #636002;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-text h3 {
    color: #636002;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-text ul,
.legal-text ol {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-text li {
    margin-bottom: 8px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.cookie-table th {
    background-color: #f8f8f8;
    color: #636002;
    font-weight: 600;
}

.cookie-preferences {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
}

.cookie-setting {
    margin-bottom: 20px;
}

.cookie-setting-label {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
}

.cookie-setting-text {
    flex: 1;
}

.cookie-setting-text strong {
    display: block;
    margin-bottom: 5px;
    color: #636002;
}

.cookie-setting-text small {
    color: #666;
    font-size: 0.9rem;
}

/* Thanks Page Styles */
.thanks-hero {
    background: linear-gradient(135deg, #636002, #8a8603);
    color: white;
    padding: 120px 0;
    text-align: center;
    margin-top: 80px;
}

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

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-hero h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
}

.thanks-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
}

.thanks-info {
    background-color: white;
    padding: 80px 0;
}

.thanks-details {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.thanks-card {
    background-color: #f8f8f8;
    padding: 40px;
    border-radius: 12px;
}

.thanks-steps {
    margin-top: 30px;
}

.thanks-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.step-icon {
    font-size: 2rem;
    background-color: #636002;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content h3 {
    color: #636002;
    margin-bottom: 8px;
}

.thanks-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.social-follow {
    background-color: #f8f8f8;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.thanks-inspiration {
    background-color: #f8f8f8;
    padding: 80px 0;
    text-align: center;
}

.inspiration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.inspiration-item {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.inspiration-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.inspiration-link {
    display: inline-block;
    margin-top: 15px;
    color: #636002;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 16px;
    border: 2px solid #636002;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.inspiration-link:hover {
    background-color: #636002;
    color: white;
}

.thanks-navigation {
    background-color: white;
    padding: 80px 0;
}

.navigation-options {
    text-align: center;
}

.nav-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.nav-card {
    background-color: #f8f8f8;
    padding: 40px 30px;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    text-align: center;
}

.nav-card:hover {
    background-color: #636002;
    color: white;
    transform: translateY(-5px);
}

.nav-card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.nav-card h3 {
    color: inherit;
    margin-bottom: 15px;
}

.nav-card:hover h3 {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        gap: 0;
        padding-top: 50px;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 10px 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 15px 30px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-content,
    .thanks-details,
    .story-content,
    .featured-content,
    .pricing-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .team-member {
        flex-direction: column;
        text-align: center;
    }
    
    .team-image {
        align-self: center;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .thanks-hero h1 {
        font-size: 2.5rem;
    }
    
    .benefits-grid,
    .services-grid,
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .consultation-steps, .diy-projects, .hacks-grid {
        grid-template-columns: 1fr;
    }
    .cookie-table {
        display: none;
    }
}

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

.section-header,
.info-card,
.benefit-item,
.service-card,
.achievement-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Print Styles */
@media print {
    .cookie-banner,
    .cookie-modal,
    header,
    footer,
    .cta-button,
    .btn-primary,
    .btn-secondary,
    .btn-tertiary {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    .page-hero,
    .hero {
        background: none !important;
        color: #333 !important;
        padding: 20pt 0;
    }
    
    .page-hero h1,
    .hero h1 {
        color: #333 !important;
    }
}
