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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
}

/* Header */
.header {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.nav-links a:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 8rem 0 4rem 0;
    text-align: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: #28a745;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    font-size: 0.95rem;
    color: #6c757d;
}

.trust-indicators span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.cta-button.secondary {
    background: white;
    color: #28a745;
    border: 2px solid #28a745;
}

.cta-button.secondary:hover {
    background: #28a745;
    color: white;
}

/* Problem Section */
.problems {
    padding: 5rem 0;
    background: white;
}

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

.problem-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border-left: 4px solid #dc3545;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(220, 53, 69, 0.1);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: 1.3rem;
    color: #dc3545;
    margin-bottom: 1rem;
}

.problem-card p {
    color: #6c757d;
    line-height: 1.6;
}

.problem-transition {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.5rem;
    color: #28a745;
    font-weight: 600;
}

/* Solution Section */
.solution {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.solution-overview {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.8;
}

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

.solution-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border-left: 4px solid #28a745;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.15);
}

.solution-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.solution-card h3 {
    font-size: 1.3rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.solution-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background: white;
}

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

.step-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border-left: 4px solid #28a745;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.1);
}

.step-number {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-card h3 {
    font-size: 1.2rem;
    color: #28a745;
    margin-bottom: 0.5rem;
}

.step-card p {
    color: #6c757d;
    line-height: 1.6;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq-list {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    font-weight: 600;
    color: #28a745;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #28a745;
    transition: transform 0.3s ease;
}

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

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

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

/* Philosophy Section */
.philosophy {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.philosophy-text h2 {
    font-size: 2.5rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.philosophy-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 2rem;
    font-style: italic;
}

.story-section {
    margin-bottom: 3rem;
}

.story-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 1.5rem;
}

.philosophy-highlight {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.philosophy-highlight h3 {
    color: #28a745;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.philosophy-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.point {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #28a745;
}

.point strong {
    color: #28a745;
}

.learning-journey {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.journey-step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.journey-step:hover {
    transform: translateY(-5px);
}

.step-number {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    color: #28a745;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.step-content p {
    color: #6c757d;
    margin: 0;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: white;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

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

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

.feature-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border-left: 4px solid #28a745;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 0rem;
}

.feature-icon img {
    width: 180px;
    height: 180px;
    object-fit: contain;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Screenshots Section */
.screenshots {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.screenshots-grid.macos {
    max-width: 1200px;
    margin: 3rem auto 0;
}

.screenshots-grid.macos .screenshot-card {
    overflow: visible;
    padding: 2rem;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.screenshots-grid.macos .screenshot-image {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 500px !important;
    object-fit: contain !important;
    object-position: center;
    border-radius: 0;
    padding: 0;
    display: block;
    margin: 0 auto;
}

.screenshots-horizontal-wrapper {
    width: 100%;
    overflow-x: auto;
    margin-top: 3rem;
    -webkit-overflow-scrolling: touch;
}

.screenshots-horizontal-wrapper::-webkit-scrollbar {
    height: 8px;
}

.screenshots-horizontal-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.screenshots-horizontal-wrapper::-webkit-scrollbar-thumb {
    background: #28a745;
    border-radius: 10px;
}

.screenshots-horizontal-wrapper::-webkit-scrollbar-thumb:hover {
    background: #20c997;
}

.screenshots-horizontal {
    display: flex;
    gap: 2rem;
    padding: 1rem 2rem 2rem;
    scroll-snap-type: x mandatory;
    width: max-content;
    min-width: 100%;
}

.screenshots-horizontal .screenshot-card {
    flex: 0 0 400px;
    scroll-snap-align: start;
}

.screenshot-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

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

.screenshot-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 1.1rem;
    font-weight: 500;
}

.screenshot-image {
    width: 100%;
    height: 400px;
    object-fit: contain;
    border-radius: 10px 10px 0 0;
    padding: 16px;
    box-sizing: border-box;
}

.screenshots-grid.macos .screenshot-image {
    height: auto;
    max-height: none;
    object-fit: none;
    padding: 0;
    border-radius: 0;
}

.screenshot-info {
    padding: 1.5rem;
}

.screenshot-info h3 {
    color: #28a745;
    margin-bottom: 0.5rem;
}

.screenshot-info p {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: white;
}

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

.pricing-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 2px solid transparent;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.pricing-card.featured {
    border-color: #28a745;
    transform: scale(1.05);
}

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

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-header h3 {
    color: #28a745;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-badge {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #28a745;
    margin-bottom: 1rem;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-button {
    display: inline-block;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.pricing-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #6c757d;
    font-style: italic;
}

/* Download Section */
.download {
    padding: 5rem 0;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    text-align: center;
}

.download h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.download p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #28a745;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.download-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.download-trust {
    margin-top: 2rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Final CTA Section */
.final-cta {
    padding: 5rem 0;
    background: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.final-cta-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    font-size: 0.95rem;
    color: #6c757d;
}

/* Footer */
.footer {
    background: #343a40;
    color: white;
    padding: 3rem 0 1rem 0;
}

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

.footer-section h3 {
    color: #28a745;
    margin-bottom: 1rem;
}

.footer-section p, .footer-section a {
    color: #adb5bd;
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
}

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

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

/* Reviews Section */
.reviews {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.stars {
    font-size: 1.2rem;
}

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

.reviewer-info strong {
    display: block;
    color: #28a745;
    font-size: 1.1rem;
}

.reviewer-info span {
    color: #6c757d;
    font-size: 0.9rem;
}

.review-text {
    color: #495057;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

.reviews-summary {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.rating {
    text-align: center;
}

.rating-number {
    font-size: 3rem;
    font-weight: bold;
    color: #28a745;
    line-height: 1;
}

.rating-stars {
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.rating-text {
    color: #6c757d;
    font-size: 0.9rem;
}

.rating-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat strong {
    display: block;
    font-size: 2rem;
    color: #28a745;
    line-height: 1;
}

.stat span {
    color: #6c757d;
    font-size: 0.9rem;
}

.star-icon {
    width: 20px;
    height: 20px;
    margin-right: 2px;
}

.stars {
    display: flex;
    align-items: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

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

    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .philosophy-text h2 {
        font-size: 2rem;
    }

    .journey-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

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

    .screenshots-grid {
        grid-template-columns: 1fr;
    }
    
    .screenshots-horizontal {
        padding: 1rem 1.5rem 2rem;
    }
    
    .screenshots-horizontal .screenshot-card {
        flex: 0 0 320px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

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

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .reviews-summary {
        flex-direction: column;
        gap: 1.5rem;
    }

    .rating-stats {
        gap: 1rem;
    }

    .problems-grid {
        grid-template-columns: 1fr;
    }

    .solution-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
}

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

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

/* Legal Pages Styles */
.legal-page {
    padding-top: 5rem;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid #28a745;
    position: relative;
}

.legal-header::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #28a745, #20c997);
    border-radius: 2px;
}

.legal-logo {
    font-size: 2.5rem;
    font-weight: bold;
    color: #28a745;
    margin-bottom: 1rem;
}

.legal-subtitle {
    color: #6c757d;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.legal-date {
    color: #28a745;
    font-weight: 600;
    font-size: 0.9rem;
}

.legal-description {
    color: #495057;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #28a745;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.legal-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.1);
}

.legal-section h2 {
    color: #28a745;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legal-section h2::before {
    content: '📋';
    font-size: 1.2rem;
}

.legal-section.privacy h2::before {
    content: '🔒';
}

.legal-section h3 {
    color: #495057;
    font-size: 1.1rem;
    margin: 1.5rem 0 0.5rem 0;
    padding-left: 1rem;
    border-left: 2px solid #28a745;
}

.legal-section p {
    margin-bottom: 1rem;
    color: #495057;
}

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

.legal-section li {
    margin-bottom: 0.5rem;
    color: #495057;
}

.legal-highlight {
    background: linear-gradient(120deg, #d4edda 0%, #c3e6cb 100%);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #28a745;
    margin: 1rem 0;
}

.legal-warning {
    background: linear-gradient(120deg, #fff3cd 0%, #ffeaa7 100%);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #ffc107;
    margin: 1rem 0;
}

.legal-contact-info {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 2rem;
}

.legal-contact-info h2 {
    color: white;
    margin-bottom: 1rem;
}

.legal-contact-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.legal-back-button {
    display: inline-block;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 1rem;
}

.legal-back-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

/* Legal Documents Grid */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.document-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border-left: 4px solid #28a745;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.document-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.15);
}

.document-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.document-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #28a745;
    margin-bottom: 1rem;
}

.document-description {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.document-button {
    display: inline-block;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.document-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.legal-info-section {
    background: linear-gradient(120deg, #d4edda 0%, #c3e6cb 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
    text-align: center;
}

.legal-info-section h2 {
    color: #28a745;
    margin-bottom: 1rem;
}

.legal-info-section p {
    color: #495057;
    margin-bottom: 1rem;
}

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

.legal-feature-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.legal-feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.legal-feature-title {
    font-weight: bold;
    color: #28a745;
    margin-bottom: 0.5rem;
}

.legal-feature-description {
    color: #6c757d;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .legal-container {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .legal-logo {
        font-size: 2rem;
    }
    
    .legal-section {
        padding: 1rem;
    }
    
    .documents-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-features-list {
        grid-template-columns: 1fr;
    }
}

