* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-white: #FFFFFF;
    --color-gray-text: #757575;
    --color-gray-border: #E0E0E0;
    --color-green: #8DA399;
    --color-green-hover: #7A8F8A;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Georgia', 'Times New Roman', serif;
}

body {
    font-family: var(--font-primary);
    color: var(--color-gray-text);
    background-color: var(--color-white);
    line-height: 1.6;
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-gray-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-gray-text);
    text-decoration: none;
    font-family: var(--font-heading);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--color-gray-text);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--color-green);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--color-gray-text);
    transition: all 0.3s ease;
}

.hero {
    background-color: var(--color-white);
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-gray-text);
    margin-bottom: 1rem;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray-text);
    margin-bottom: 2rem;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--color-green);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-green-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-green);
    border: 1px solid var(--color-green);
}

.btn-secondary:hover {
    background-color: var(--color-green);
    color: var(--color-white);
}

section {
    padding: 4rem 0;
}

h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-gray-text);
    margin-bottom: 1.5rem;
    font-weight: 400;
    text-align: center;
    hyphens: auto;
}

h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-gray-text);
    margin-bottom: 1rem;
    font-weight: 400;
}

h4 {
    font-size: 1.1rem;
    color: var(--color-gray-text);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--color-gray-text);
}

a {
    color: var(--color-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-green-hover);
}

.intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro p {
    font-size: 1.1rem;
}

.features {
    background-color: #FAFAFA;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--color-white);
    border-radius: 4px;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step h3 {
    margin-bottom: 0.5rem;
}

.testimonials {
    background-color: #FAFAFA;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial cite {
    color: var(--color-green);
    font-style: normal;
}

.cta {
    text-align: center;
    background-color: #FAFAFA;
}

.contact-preview {
    text-align: center;
}

.contact-info {
    margin: 2rem 0;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.page-header {
    text-align: center;
    padding: 3rem 0;
    background-color: #FAFAFA;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-gray-text);
    margin-bottom: 1rem;
    font-weight: 400;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-border);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.product-info {
    padding: 1.5rem;
}

.product-description {
    margin-bottom: 0.5rem;
}

.product-details {
    font-size: 0.9rem;
    color: var(--color-gray-text);
    opacity: 0.8;
}

.collection-info {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-story,
.about-values,
.about-process,
.about-location {
    max-width: 900px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    padding: 1.5rem;
}

.process-detailed {
    margin-top: 2rem;
}

.process-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.process-number {
    width: 50px;
    height: 50px;
    background-color: var(--color-green);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    flex-shrink: 0;
}

.process-content {
    flex: 1;
}

.location-info {
    margin: 2rem 0;
}

.location-info p {
    margin-bottom: 0.5rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info-section,
.contact-form-section {
    background-color: #FAFAFA;
    padding: 2rem;
    border-radius: 4px;
}

.contact-details {
    margin-top: 1.5rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
}

.map-section {
    margin-top: 3rem;
}

.map-container {
    margin-top: 1.5rem;
    border-radius: 4px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-gray-text);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--color-gray-border);
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--color-gray-text);
    background-color: var(--color-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-green);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    cursor: pointer;
}

.success-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-content {
    text-align: center;
    max-width: 600px;
    padding: 3rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: var(--color-green);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 2rem;
}

.success-content h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-gray-text);
    margin-bottom: 1rem;
    font-weight: 400;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.policy-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 0;
}

.policy-page h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-gray-text);
    margin-bottom: 1rem;
    font-weight: 400;
}

.policy-date {
    color: var(--color-gray-text);
    opacity: 0.7;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.policy-page section {
    margin-bottom: 2.5rem;
    padding: 0;
}

.policy-page h2 {
    font-size: 1.75rem;
    text-align: left;
    margin-bottom: 1rem;
}

.policy-page h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.policy-page ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-page li {
    margin-bottom: 0.5rem;
}

.withdrawal-form {
    background-color: #FAFAFA;
    padding: 1.5rem;
    border-radius: 4px;
    margin-top: 1rem;
    font-family: monospace;
    font-size: 0.9rem;
}

footer {
    background-color: #FAFAFA;
    border-top: 1px solid var(--color-gray-border);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--color-gray-text);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-gray-border);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 100px;
        flex-direction: column;
        background-color: var(--color-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    h2 {
        font-size: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .collection-grid,
    .testimonials-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .process-item {
        flex-direction: column;
        gap: 1rem;
    }

    .success-actions {
        flex-direction: column;
    }

    .success-actions a {
        width: 100%;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 2rem 0;
    }

    section {
        padding: 2rem 0;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .policy-page {
        padding: 2rem 0;
    }

    .policy-page h1 {
        font-size: 2rem;
    }
}
