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

body {
    font-family: 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
    line-height: 1.6;
    color: #2d2d2d;
    background-color: #f9f7f4;
}

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

/* Typography */
h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-align: center;
}

h3 {
    font-size: 1.25rem;
    line-height: 1.2;
    font-weight: 400;
    color: #2d2d2d;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.1rem;
    line-height: 1.2;
    font-weight: 500;
    color: #2d2d2d;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    color: #4a4a4a;
}

/* Header */
.header {
    background-color: #ffffff;
    padding: 1rem 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 300;
    color: #2d2d2d;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f9f7f4 0%, #e8e6e1 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    max-width: 500px;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-svg {
    width: 100%;
    height: auto;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(45deg, #4a5d23, #6b7c32);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    text-align: center;
    padding: 1rem;
}

.cta-button {
    display: inline-block;
    background-color: #4a5d23;
    color: white;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #3a4d1a;
}

/* Sections */
section {
    padding: 3rem 0;
}

.intro {
    background-color: white;
    text-align: center;
}

.intro h2 {
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.intro p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Features */
.features {
    background-color: #f9f7f4;
    text-align: center;
}

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

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

.feature-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

/* Products */
.products {
    background-color: white;
    text-align: center;
}

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

.product-card {
    background-color: #f9f7f4;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

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

.product-image .image-placeholder {
    height: 200px;
    background: linear-gradient(45deg, #6b7c32, #4a5d23);
    color: white;
    font-size: 0.9rem;
}

.product-svg {
    width: 100%;
    height: 200px;
    border-radius: 8px 8px 0 0;
}

.product-card h3,
.product-card p,
.product-price {
    padding: 0 1.5rem;
}

.product-card h3 {
    padding-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: #4a5d23;
    margin-bottom: 1rem;
}

.product-button {
    display: block;
    background-color: #4a5d23;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.product-button:hover {
    background-color: #3a4d1a;
}

/* Benefits */
.benefits {
    background-color: #f9f7f4;
    text-align: center;
}

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

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

/* Process */
.process {
    background-color: white;
    text-align: center;
}

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

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

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

/* Testimonials */
.testimonials {
    background-color: #f9f7f4;
    text-align: center;
}

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

.testimonial-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.testimonial-card cite {
    color: #4a5d23;
    font-weight: 500;
}

/* Newsletter */
.newsletter {
    background-color: #4a5d23;
    color: white;
    text-align: center;
}

.newsletter h2,
.newsletter p {
    color: white;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    margin: 2rem auto 0;
    gap: 0;
}

.email-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 1rem;
}

.newsletter-button {
    background-color: #6b7c32;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0 4px 4px 0;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-button:hover {
    background-color: #5a6b28;
}

/* Contacts */
.contacts {
    background-color: white;
}

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

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

.contact-item a {
    color: #4a5d23;
    text-decoration: none;
    font-weight: 500;
}

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

.contact-item address {
    font-style: normal;
    line-height: 1.6;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-brand .brand-name {
    color: white;
}

.footer-brand p {
    color: #cccccc;
    margin-top: 0.5rem;
}

.footer-navigation {
    display: flex;
    justify-content: flex-end;
}

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

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

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

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
}

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

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

.footer-bottom p {
    color: #cccccc;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .features-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-navigation {
        justify-content: center;
    }
    
    .footer-links {
        justify-content: center;
        gap: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .email-input,
    .newsletter-button {
        border-radius: 4px;
    }
}