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

body {
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
}

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

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

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

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

.btn-primary:hover {
    background-color: #1e4332;
    transform: translateY(-2px);
}

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

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

.btn-login {
    background-color: #F9F8F6;
    color: #2A5B45;
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-login:hover, .btn-login.active {
    background-color: #2A5B45;
    color: white;
}

.full-width {
    width: 100%;
}

/* Header */
.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;
}

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

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

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

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2A5B45;
    text-decoration: none;
}

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

.nav-link {
    color: #333333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(42, 91, 69, 0.8), rgba(42, 91, 69, 0.6));
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Section Styles */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #2A5B45;
}

.brand-story {
    padding: 5rem 0;
    background-color: #F9F8F6;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

.story-content strong {
    color: #2A5B45;
    font-weight: 700;
}

/* Products Showcase */
.products-showcase {
    padding: 5rem 0;
}

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

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

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

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

.product-info {
    padding: 1.5rem;
}

.product-title {
    color: #2A5B45;
    margin-bottom: 0.5rem;
}

.product-description {
    color: #666;
    margin-bottom: 1rem;
}

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

/* How It Works */
.how-it-works {
    padding: 5rem 0;
    background-color: #F9F8F6;
}

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

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

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background-color: #2A5B45;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon img {
    width: 40px;
    height: 40px;
}

.step-title {
    color: #2A5B45;
    margin-bottom: 0.5rem;
}

.step-description {
    color: #666;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
}

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

.testimonial {
    background: #F9F8F6;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 700;
    color: #2A5B45;
}

/* FAQ */
.faq {
    padding: 5rem 0;
    background-color: #F9F8F6;
}

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

.faq-item {
    margin-bottom: 1rem;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

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

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

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

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

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

/* Page Header */
.page-header {
    padding: 8rem 0 4rem;
    background-color: #F9F8F6;
    text-align: center;
}

.page-title {
    color: #2A5B45;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.1rem;
    color: #666;
}

/* Products Page */
.product-categories {
    padding: 4rem 0;
}

.category-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid #e0e0e0;
}

.tab-button {
    padding: 1rem 2rem;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    color: #666;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.tab-button.active {
    color: #2A5B45;
    border-bottom-color: #2A5B45;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.category-title {
    color: #2A5B45;
    margin-bottom: 1rem;
}

.category-description {
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #666;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #2A5B45;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
}

.product-card {
    position: relative;
}

.product-features {
    list-style: none;
    margin-bottom: 1rem;
}

.product-features li {
    padding: 0.25rem 0;
    color: #666;
}

.product-features li::before {
    content: '✓';
    color: #2A5B45;
    font-weight: bold;
    margin-right: 0.5rem;
}

.btn-cart {
    background-color: #2A5B45;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-cart:hover {
    background-color: #1e4332;
}

/* Subscription Plans */
.subscription-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.plan-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.plan-card:hover {
    border-color: #2A5B45;
    transform: translateY(-5px);
}

.plan-card.popular {
    border-color: #2A5B45;
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2A5B45;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.plan-header {
    margin-bottom: 2rem;
}

.plan-name {
    color: #2A5B45;
    margin-bottom: 1rem;
}

.plan-price {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
}

.plan-price span {
    font-size: 1rem;
    color: #666;
}

.plan-features ul {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.5rem 0;
    color: #666;
}

.plan-features li::before {
    content: '✓';
    color: #2A5B45;
    font-weight: bold;
    margin-right: 0.5rem;
}

.plan-discount {
    background-color: #f0f8f0;
    color: #2A5B45;
    padding: 0.5rem;
    border-radius: 4px;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Benefits Grid */
.subscription-benefits {
    margin-top: 4rem;
}

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

.benefit {
    text-align: center;
    padding: 1.5rem;
    background: #F9F8F6;
    border-radius: 8px;
}

.benefit h4 {
    color: #2A5B45;
    margin-bottom: 0.5rem;
}

/* News Page */
.news-content {
    padding: 4rem 0;
}

.news-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.news-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: box-shadow 0.3s ease;
}

.news-item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.news-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.news-category {
    display: inline-block;
    background-color: #2A5B45;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.news-title {
    color: #2A5B45;
    margin-bottom: 1rem;
}

.news-excerpt {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.read-more {
    background: none;
    border: 1px solid #2A5B45;
    color: #2A5B45;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.read-more:hover {
    background-color: #2A5B45;
    color: white;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.page-btn {
    padding: 0.75rem 1rem;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Support Page */
.support-content {
    padding: 4rem 0;
}

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

.contact-info h2,
.inquiry-form h2 {
    color: #2A5B45;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #F9F8F6;
    border-radius: 8px;
}

.contact-item h3 {
    color: #2A5B45;
    margin-bottom: 0.5rem;
}

.contact-item p {
    margin-bottom: 0.25rem;
    color: #666;
}

/* Forms */
.auth-form,
.inquiry-form form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.checkbox-group {
    margin-top: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 0.75rem;
}

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

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 3px;
    margin-right: 0.75rem;
    position: relative;
    transition: all 0.3s ease;
}

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

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 0.875rem;
}

/* Quality Policy */
.quality-policy {
    padding: 4rem 0;
    background-color: #F9F8F6;
}

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

.policy-highlight {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.policy-highlight h3 {
    color: #2A5B45;
    font-size: 1.5rem;
}

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

.policy-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.policy-item h4 {
    color: #2A5B45;
    margin-bottom: 1rem;
}

.policy-item ol,
.policy-item ul {
    padding-left: 1.5rem;
}

.policy-item li {
    margin-bottom: 0.5rem;
    color: #666;
}

/* Login Page */
.login-section {
    padding: 8rem 0 4rem;
    min-height: 100vh;
    background-color: #F9F8F6;
}

.login-container {
    max-width: 600px;
    margin: 0 auto;
}

.login-header {
    text-align: center;
    margin-bottom: 3rem;
}

.login-title {
    color: #2A5B45;
    margin-bottom: 0.5rem;
}

.login-subtitle {
    color: #666;
    font-size: 1.1rem;
}

.login-content {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.login-tabs {
    display: flex;
    background-color: #f5f5f5;
}

.tab-btn {
    flex: 1;
    padding: 1rem;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background-color: white;
    color: #2A5B45;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.forgot-password {
    color: #2A5B45;
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-password:hover {
    text-decoration: underline;
}

/* Social Login */
.social-login {
    padding: 2rem;
    border-top: 1px solid #e0e0e0;
}

.divider {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #e0e0e0;
}

.divider span {
    background: white;
    padding: 0 1rem;
    color: #666;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-btn {
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: white;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background-color: #f5f5f5;
}

.social-btn.kakao {
    background-color: #FEE500;
    border-color: #FEE500;
}

.social-btn.naver {
    background-color: #03C75A;
    color: white;
    border-color: #03C75A;
}

.social-btn.google {
    border-color: #4285f4;
    color: #4285f4;
}

/* Agreements */
.agreements {
    margin-bottom: 2rem;
}

.login-benefits {
    margin-top: 2rem;
    padding: 2rem;
    background: #F9F8F6;
    border-radius: 8px;
}

.login-benefits h3 {
    color: #2A5B45;
    margin-bottom: 1rem;
}

.login-benefits ul {
    list-style: none;
}

.login-benefits li {
    padding: 0.5rem 0;
    color: #666;
}

.login-benefits li::before {
    content: '•';
    color: #2A5B45;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* About Page Specific */
.mission {
    padding: 4rem 0;
}

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

.mission-statement {
    font-size: 2rem;
    font-weight: 700;
    color: #2A5B45;
    margin-bottom: 2rem;
}

.mission-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
}

.core-values {
    padding: 5rem 0;
    background-color: #F9F8F6;
}

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.value-title {
    color: #2A5B45;
    margin-bottom: 1rem;
}

.value-description {
    color: #666;
    line-height: 1.6;
}

.quality-system {
    padding: 5rem 0;
}

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

.quality-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #666;
}

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

.quality-step {
    text-align: center;
    padding: 2rem;
    background: #F9F8F6;
    border-radius: 12px;
}

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

.hyperlocal-trust {
    padding: 5rem 0;
    background-color: #F9F8F6;
}

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

.trust-content > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #666;
}

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

.trust-feature {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.trust-feature h3 {
    color: #2A5B45;
    margin-bottom: 1rem;
}

.trust-feature p {
    color: #666;
    line-height: 1.6;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 2rem;
}

.footer-info p {
    margin-bottom: 0.5rem;
    color: #ccc;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

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

.footer-bottom p {
    color: #ccc;
    font-size: 0.9rem;
}

/* Product Details for Dynamic Content */
.product-details {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: #666;
}

.product-details span {
    display: block;
    margin-bottom: 0.25rem;
}

.product-origin {
    color: #2A5B45;
    font-weight: 500;
}

.product-unit {
    color: #777;
}

.product-stock {
    color: #999;
}

/* Price styling */
.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

/* Loading message */
.loading-message {
    text-align: center;
    padding: 2rem;
    color: #666;
    font-style: italic;
    grid-column: 1 / -1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .category-tabs {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .tab-button {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
    
    .subscription-plans {
        grid-template-columns: 1fr;
    }
    
    .plan-card.popular {
        transform: none;
    }
    
    .news-categories {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid,
    .quality-steps,
    .trust-features {
        grid-template-columns: 1fr;
    }
    
    .auth-form {
        padding: 1.5rem;
    }
    
    .login-container {
        margin: 0 15px;
    }
}
