/* Muji / Japanese Minimalism Style */

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

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #FAFAFA;
    color: #333333;
    line-height: 1.8;
    font-size: 16px;
}

.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 40px;
}

/* Typography */
h1 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

h2 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}

p {
    margin-bottom: 20px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 40px 0;
}

.hero h1 {
    margin-bottom: 20px;
}

.hero p {
    margin-bottom: 30px;
}

/* Divider */
.divider {
    border: none;
    border-top: 1px solid #E0E0E0;
    margin: 50px 0;
}

/* Content Section */
.content {
    padding: 20px 0;
}

.features {
    list-style: none;
    margin: 30px 0;
}

.features li {
    padding: 8px 0;
    border-bottom: 1px solid #F0F0F0;
}

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

/* Images */
.image-container {
    text-align: center;
    margin: 40px 0;
}

.main-image {
    max-width: 100%;
    height: auto;
    opacity: 0.9;
}

/* CTA Section */
.cta {
    text-align: center;
    padding: 20px 0;
}

.btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border: 1px solid #333333;
    background-color: transparent;
    color: #333333;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: background-color 0.2s ease;
}

.btn:hover {
    background-color: #F5F5F5;
}

.btn-secondary {
    border-color: #999999;
    color: #666666;
}

.btn-secondary:hover {
    background-color: #F8F8F8;
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px 0 0;
}

.links {
    margin-bottom: 20px;
}

.links a {
    color: #666666;
    text-decoration: none;
    font-size: 14px;
    margin: 0 10px;
}

.links a:hover {
    color: #333333;
}

.links span {
    color: #CCCCCC;
}

.copyright {
    font-size: 12px;
    color: #999999;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 40px 20px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 18px;
    }

    .btn-group {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
    }
}
