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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

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

/* Header */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    width: 150px;
    height: auto;
}

.nav {
    display: none;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #333;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2c7a3f;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f5e9 100%);
}

.hero .container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #2c7a3f;
    color: #fff;
}

.btn-primary:hover {
    background-color: #235c30;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 122, 63, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #2c7a3f;
    border: 2px solid #2c7a3f;
}

.btn-secondary:hover {
    background-color: #2c7a3f;
    color: #fff;
}

.btn-text {
    background: none;
    color: #666;
    padding: 12px 20px;
}

.btn-text:hover {
    color: #333;
}

/* Section Styles */
section {
    padding: 60px 0;
}

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

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c7a3f;
}

/* Philosophy Section */
.philosophy {
    background-color: #f9f9f9;
}

.philosophy-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.philosophy-item {
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.philosophy-item img {
    margin: 0 auto 20px;
}

/* Featured Services */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

.service-card img {
    margin: 0 auto 20px;
}

/* Company Story */
.company-story {
    background-color: #f5f7fa;
}

.story-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.story-visual {
    flex: 1;
}

/* Benefits */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background-color: #fff;
    border-radius: 10px;
    border-left: 4px solid #2c7a3f;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.benefit-content h3 {
    margin-bottom: 10px;
}

.benefit-content p {
    color: #666;
    line-height: 1.7;
}

/* Statistics */
.statistics {
    background: linear-gradient(135deg, #2c7a3f 0%, #1e5a2c 100%);
    color: #fff;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Testimonials */
.testimonials {
    background-color: #f9f9f9;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-card {
    padding: 35px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    margin-bottom: 25px;
}

.testimonial-text p {
    font-style: italic;
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

.testimonial-author strong {
    display: block;
    color: #2c7a3f;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #888;
    font-size: 0.95rem;
}

/* Knowledge Section */
.knowledge-section {
    background-color: #f5f7fa;
}

.knowledge-header {
    text-align: center;
    margin-bottom: 50px;
}

.knowledge-header h2 {
    margin-bottom: 10px;
}

.knowledge-header p {
    color: #666;
    font-size: 1.1rem;
}

.knowledge-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.knowledge-card {
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    border-top: 3px solid #2c7a3f;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.knowledge-card h3 {
    margin-bottom: 15px;
}

.knowledge-card p {
    color: #666;
    line-height: 1.7;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #2c7a3f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    margin-bottom: 10px;
}

.step-content p {
    color: #666;
    line-height: 1.7;
}

/* FAQ Section */
.faq {
    background-color: #fff;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #333;
    transition: background-color 0.3s ease;
}

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

.faq-icon {
    font-size: 1.5rem;
    color: #2c7a3f;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: #666;
    line-height: 1.7;
}

/* Trust Indicators */
.trust-indicators {
    background-color: #f9f9f9;
}

.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.trust-item img {
    margin: 0 auto 20px;
}

.trust-item h3 {
    margin-bottom: 15px;
}

.trust-item p {
    color: #666;
    line-height: 1.7;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #2c7a3f 0%, #1e5a2c 100%);
    color: #fff;
    text-align: center;
}

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

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.cta .btn-secondary {
    border-color: #fff;
    color: #fff;
}

.cta .btn-secondary:hover {
    background-color: #fff;
    color: #2c7a3f;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: #fff;
    margin-bottom: 20px;
}

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

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #2c7a3f;
}

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

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #2c7a3f 0%, #1e5a2c 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.page-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* About Page */
.about-intro {
    background-color: #f9f9f9;
}

.about-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-text p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

/* Values */
.values-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-card {
    padding: 35px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.value-card img {
    margin: 0 auto 20px;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

/* Team */
.team {
    background-color: #f9f9f9;
}

.team-intro {
    text-align: center;
    color: #666;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.team-member {
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.team-avatar {
    margin-bottom: 20px;
}

.team-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto;
}

.team-role {
    color: #2c7a3f;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    color: #666;
    line-height: 1.7;
}

/* Milestones */
.milestones {
    background-color: #f5f7fa;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 25px;
}

.timeline-year {
    flex-shrink: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c7a3f;
    min-width: 80px;
}

.timeline-content {
    flex: 1;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    border-left: 4px solid #2c7a3f;
}

.timeline-content h3 {
    margin-bottom: 10px;
}

.timeline-content p {
    color: #666;
    line-height: 1.7;
}

/* Approach */
.approach-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.approach-item {
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.approach-item h3 {
    margin-bottom: 15px;
}

.approach-item p {
    color: #666;
    line-height: 1.7;
}

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

.achievements-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.achievement-card {
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.achievement-card img {
    margin: 0 auto 20px;
}

.achievement-card p {
    color: #666;
    line-height: 1.7;
}

/* Philosophy Detailed */
.philosophy-detailed {
    background-color: #f5f7fa;
}

.philosophy-text {
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-text p {
    margin-bottom: 25px;
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Trust Section */
.trust-reasons {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.trust-reason {
    display: flex;
    gap: 20px;
    padding: 25px;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.trust-reason img {
    flex-shrink: 0;
}

.trust-reason h3 {
    margin-bottom: 10px;
}

.trust-reason p {
    color: #666;
    line-height: 1.7;
}

/* Services Page */
.services-intro {
    background-color: #f9f9f9;
}

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

.intro-text p {
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
}

.services-main {
    max-width: 1000px;
    margin: 0 auto;
}

.category-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 60px;
}

.service-item {
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #2c7a3f;
}

.service-item-header {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 15px;
}

.service-item-header img {
    flex-shrink: 0;
}

.service-item-title {
    flex: 1;
}

.service-item-title h3 {
    margin-bottom: 8px;
}

.service-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c7a3f;
}

.service-description {
    color: #666;
    line-height: 1.7;
}

/* Service Benefits */
.service-benefits {
    background-color: #f9f9f9;
}

.benefits-comparison {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-card {
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
}

.benefit-card img {
    margin: 0 auto 20px;
}

.benefit-card p {
    color: #666;
    line-height: 1.7;
}

/* Contact Page */
.contact-info {
    background-color: #f9f9f9;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    padding: 35px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.contact-card img {
    margin: 0 auto 20px;
}

.contact-card h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 10px;
}

.contact-card a {
    color: #2c7a3f;
    font-weight: 600;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Company Description */
.description-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.description-text p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

/* Directions */
.directions {
    background-color: #f9f9f9;
}

.directions-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.direction-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background-color: #fff;
    border-radius: 10px;
}

.direction-item img {
    flex-shrink: 0;
}

.direction-item h3 {
    margin-bottom: 15px;
}

.direction-item p {
    color: #666;
    line-height: 1.7;
}

/* Additional Info */
.additional-info {
    background-color: #f5f7fa;
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.info-card h3 {
    margin-bottom: 20px;
}

.info-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 10px;
}

/* Thank You Page */
.thank-you-hero {
    background: linear-gradient(135deg, #2c7a3f 0%, #1e5a2c 100%);
    color: #fff;
    padding: 80px 0;
}

.thank-you-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.thank-you-content img {
    margin: 0 auto 30px;
}

.thank-you-content h1 {
    margin-bottom: 20px;
}

.thank-you-message {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.thank-you-content p {
    opacity: 0.95;
    line-height: 1.7;
}

/* Next Steps */
.next-steps {
    background-color: #f9f9f9;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 35px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.step-card .step-number {
    margin-bottom: 20px;
}

.step-card h3 {
    margin-bottom: 15px;
}

.step-card p {
    color: #666;
    line-height: 1.7;
}

/* Explore Section */
.explore-intro {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.explore-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.explore-card {
    text-align: center;
    padding: 40px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.explore-card img {
    margin: 0 auto 20px;
}

.explore-card h3 {
    margin-bottom: 15px;
}

.explore-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Contact Reminder */
.contact-reminder {
    background-color: #f9f9f9;
}

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

.reminder-content h2 {
    margin-bottom: 20px;
}

.reminder-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Legal Pages */
.legal-page {
    padding: 60px 0;
}

.legal-intro {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 900px;
}

.legal-content {
    max-width: 900px;
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.legal-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-content ul {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 20px;
}

.legal-content ul li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-content a {
    color: #2c7a3f;
    font-weight: 600;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Cookie Table */
.cookie-table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
}

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

.cookie-table th {
    background-color: #f9f9f9;
    font-weight: 600;
    color: #333;
}

.cookie-table td {
    color: #666;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

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

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

.cookie-modal-content {
    background-color: #fff;
    border-radius: 10px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.cookie-modal-close {
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal-close:hover {
    color: #333;
}

.cookie-modal-body {
    padding: 25px;
}

.cookie-category {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-category-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.cookie-category p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Switch Toggle */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.switch input:checked + .slider {
    background-color: #2c7a3f;
}

.switch input:checked + .slider:before {
    transform: translateX(26px);
}

.switch input:disabled + .slider {
    background-color: #2c7a3f;
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 25px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Media Queries - Tablet */
@media (min-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .container {
        flex-direction: row;
        align-items: center;
    }

    .philosophy-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .philosophy-item {
        flex: 1;
        min-width: calc(50% - 15px);
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1;
        min-width: calc(50% - 15px);
    }

    .story-layout {
        flex-direction: row;
        align-items: center;
    }

    .stats-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 1;
        min-width: calc(50% - 15px);
    }

    .testimonials-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial-card {
        flex: 1;
        min-width: calc(50% - 15px);
    }

    .knowledge-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .knowledge-card {
        flex: 1;
        min-width: calc(50% - 12.5px);
    }

    .trust-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .trust-item {
        flex: 1;
        min-width: calc(33.333% - 20px);
    }

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .footer-content {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-section {
        flex: 1;
        min-width: calc(50% - 20px);
    }

    .about-layout {
        flex-direction: row;
        align-items: center;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1;
        min-width: calc(50% - 15px);
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 1;
        min-width: calc(50% - 15px);
    }

    .achievements-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .achievement-card {
        flex: 1;
        min-width: calc(50% - 15px);
    }

    .benefits-comparison {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-card {
        flex: 1;
        min-width: calc(50% - 12.5px);
    }

    .contact-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-card {
        flex: 1;
        min-width: calc(50% - 15px);
    }

    .description-layout {
        flex-direction: row;
        align-items: center;
    }

    .steps-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .step-card {
        flex: 1;
        min-width: calc(33.333% - 20px);
    }

    .explore-grid {
        flex-direction: row;
    }

    .explore-card {
        flex: 1;
    }

    .info-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .info-card {
        flex: 1;
        min-width: calc(50% - 15px);
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-content p {
        flex: 1;
        margin-right: 20px;
    }

    .cookie-buttons {
        flex-direction: row;
        flex-shrink: 0;
    }

    .cookie-modal-footer {
        flex-direction: row;
        justify-content: flex-end;
    }
}

/* Media Queries - Desktop */
@media (min-width: 1024px) {
    .nav {
        display: block;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .philosophy-item {
        min-width: calc(33.333% - 20px);
    }

    .service-card {
        min-width: calc(25% - 22.5px);
    }

    .stat-item {
        min-width: calc(25% - 22.5px);
    }

    .testimonials-grid {
        flex-direction: row;
    }

    .testimonial-card {
        min-width: calc(33.333% - 20px);
    }

    .knowledge-card {
        min-width: calc(50% - 12.5px);
    }

    .values-grid {
        flex-direction: row;
    }

    .value-card {
        min-width: calc(50% - 15px);
    }

    .team-member {
        min-width: calc(25% - 22.5px);
    }

    .achievements-grid {
        flex-direction: row;
    }

    .achievement-card {
        min-width: calc(25% - 22.5px);
    }

    .benefit-card {
        min-width: calc(25% - 18.75px);
    }

    .contact-card {
        min-width: calc(33.333% - 20px);
    }

    .info-card {
        min-width: calc(50% - 15px);
    }

    .footer-section {
        min-width: calc(25% - 30px);
    }
}

@media (min-width: 1200px) {
    .logo img {
        width: 180px;
    }
}