/* SuperHercy - Garden Shop Styles */

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

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

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

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

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

p {
    margin-bottom: 1rem;
}

/* Links */
a {
    text-decoration: none;
    color: #2d5a27;
    transition: color 0.3s ease;
}

a:hover {
    color: #1e3a1b;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: inherit;
    font-size: 1rem;
}

.btn-primary {
    background-color: #2d5a27;
    color: white;
}

.btn-primary:hover {
    background-color: #1e3a1b;
    color: white;
}

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

.btn-secondary:hover {
    background-color: #2d5a27;
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: #666;
    border: 2px solid #666;
}

.btn-outline:hover {
    background-color: #666;
    color: white;
}

/* Navigation */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

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

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5a27;
}

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

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fdf7 0%, #e8f5e8 100%);
    padding: 120px 0 80px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    flex: 1;
}

.hero-title {
    font-size: 3rem;
    color: #2d5a27;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

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

.hero-image {
    flex: 1;
}

.hero-img {
    width: 100%;
    height: auto;
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2d5a27;
    margin-bottom: 1rem;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

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

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-image {
    flex: 1;
}

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

.about-text {
    flex: 1;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0.5rem;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #2d5a27;
}

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

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #f8fdf7;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

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

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

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

.advantage-card {
    text-align: center;
    padding: 1.5rem;
}

.advantage-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d5a27 0%, #1e3a1b 100%);
    color: white;
}

.newsletter-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.newsletter-text {
    flex: 1;
}

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

.newsletter-form input {
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    cursor: pointer;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-radius: 3px;
    position: relative;
    flex-shrink: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #f8fdf7;
}

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

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

.testimonial-stars {
    width: 100px;
    height: 20px;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #666;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

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

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

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

.blog-content {
    padding: 1.5rem;
}

.blog-category {
    background-color: #2d5a27;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-title {
    margin: 1rem 0 0.5rem;
}

.blog-title a {
    color: #333;
}

.blog-title a:hover {
    color: #2d5a27;
}

.blog-excerpt {
    color: #666;
    margin-bottom: 1rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #888;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #f8fdf7;
}

.contact-content {
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

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

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

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

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #2d5a27;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: #1e3a1b;
}

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

.contact-map {
    flex: 1;
}

.map-image {
    width: 100%;
    height: 300px;
    border-radius: 10px;
}

/* Footer */
.footer {
    background-color: #031201;
    color: white;
    padding: 50px 0 20px;
}

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

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

.footer-logo-img {
    height: 30px;
    width: auto;
    filter: brightness(0) invert(1);
}

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

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

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

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

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

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-newsletter input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
}

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 1rem;
    z-index: 1001;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
}

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

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

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

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

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.cookie-modal-body {
    padding: 1.5rem;
}

.cookie-category {
    margin-bottom: 2rem;
}

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

.toggle {
    position: relative;
    width: 50px;
    height: 25px;
}

.toggle input {
    display: none;
}

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

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

.toggle input:checked + .toggle-slider {
    background-color: #2d5a27;
}

.toggle input:checked + .toggle-slider:before {
    transform: translateX(25px);
}

.cookie-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #eee;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Page-specific Styles */

/* Garden Kits Page */
.page-header {
    background: linear-gradient(135deg, #f8fdf7 0%, #e8f5e8 100%);
    padding: 120px 0 80px;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.header-text {
    flex: 1;
}

.header-image {
    flex: 1;
}

.header-img {
    width: 100%;
    height: auto;
}

.filters-section {
    padding: 40px 0;
    background-color: white;
}

.filters-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 20px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: #2d5a27;
    background-color: #2d5a27;
    color: white;
}

.filter-icon {
    width: 20px;
    height: 20px;
}

.garden-kits {
    padding: 60px 0;
    background-color: #f8fdf7;
}

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

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

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

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

.kit-content {
    padding: 2rem;
}

.kit-category {
    background-color: #2d5a27;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1rem;
}

.kit-description {
    color: #666;
    margin-bottom: 1.5rem;
}

.kit-features {
    margin-bottom: 1.5rem;
}

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

.feature-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.kit-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5a27;
}

.original-price {
    font-size: 1rem;
    color: #888;
    text-decoration: line-through;
}

.kit-btn {
    width: 100%;
}

/* Why Kits Section */
.why-kits {
    padding: 80px 0;
    background-color: white;
}

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

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

.benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

/* Subscription Service */
.subscription-service {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d5a27 0%, #1e3a1b 100%);
    color: white;
}

.subscription-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.subscription-text {
    flex: 1;
}

.subscription-benefits {
    margin: 2rem 0;
}

.sub-benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.sub-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.subscription-image {
    flex: 1;
}

.sub-img {
    width: 100%;
    height: auto;
}

/* Legal Pages */
.legal-page {
    padding: 120px 0 80px;
    background-color: #f8fdf7;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.last-updated {
    font-style: italic;
    color: #666;
    margin-bottom: 2rem;
}

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

.legal-section h2 {
    color: #2d5a27;
    margin-bottom: 1rem;
}

.legal-section h3 {
    color: #2d5a27;
    margin-bottom: 0.5rem;
}

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

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

.contact-info {
    background-color: #f8fdf7;
    padding: 1.5rem;
    border-radius: 5px;
    margin: 1rem 0;
}

/* Thank You Page */
.thank-you-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fdf7 0%, #e8f5e8 100%);
}

.thank-you-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.thank-you-image {
    flex: 1;
}

.thank-you-img {
    width: 100%;
    height: auto;
}

.thank-you-text {
    flex: 2;
}

.thank-you-message {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.what-next {
    margin-bottom: 3rem;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

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

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

.continue-shopping {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

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

.featured-products {
    padding: 80px 0;
    background-color: white;
}

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

.product-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    margin-bottom: 1rem;
}

.product-link {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 500;
    color: #2d5a27;
}

/* Blog Articles */
.article-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8fdf7 0%, #e8f5e8 100%);
}

.breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #2d5a27;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.article-category {
    background-color: #2d5a27;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-weight: 500;
}

.article-date {
    color: #666;
}

.article-read-time {
    color: #666;
}

.article-title {
    font-size: 3rem;
    color: #2d5a27;
    margin-bottom: 1rem;
}

.article-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.article-hero-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

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

.article-content .container {
    display: flex;
    gap: 3rem;
}

.article-body {
    flex: 2;
}

.article-intro {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.article-body h2 {
    color: #2d5a27;
    margin: 2rem 0 1rem;
}

.article-body h3 {
    color: #2d5a27;
    margin: 1.5rem 0 0.5rem;
}

.article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin: 2rem 0;
}

.article-body ul {
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.article-body li {
    margin-bottom: 0.5rem;
}

.recommended-products {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f8fdf7;
    border-radius: 10px;
}

.product-recommendation {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
}

.product-recommendation .product-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
}

.product-info {
    flex: 1;
}

.article-conclusion {
    background-color: #f8fdf7;
    padding: 2rem;
    border-radius: 10px;
    margin: 3rem 0;
}

.article-tags {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
}

.tag {
    display: inline-block;
    background-color: #e8f5e8;
    color: #2d5a27;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin: 0 0.5rem 0.5rem 0;
}

.article-sidebar {
    flex: 1;
}

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

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.related-articles {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.related-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.related-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.related-content {
    flex: 1;
}

.related-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.related-content a {
    color: #333;
}

.related-content a:hover {
    color: #2d5a27;
}

.related-date {
    font-size: 0.8rem;
    color: #666;
}

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

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

.sidebar-newsletter input {
    padding: 10px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .nav-menu {
        display: none;
    }

    .hero-content,
    .about-content,
    .contact-content,
    .newsletter-content,
    .subscription-content,
    .thank-you-content,
    .header-content {
        flex-direction: column;
        text-align: center;
    }

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

    .services-grid,
    .advantages-grid,
    .testimonials-grid,
    .blog-grid,
    .kits-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        justify-content: space-around;
    }

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

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

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

    .article-content .container {
        flex-direction: column;
    }

    .product-recommendation {
        flex-direction: column;
        text-align: center;
    }

    .filters-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

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

    .legal-content {
        padding: 2rem 1rem;
    }

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

/* Utility Classes */
.hidden {
    display: none !important;
}

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

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

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

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }