/*
Theme Name: Japan Platform Theme
Theme URI: http://example.com/
Author: Converted by ChatGPT
Author URI: http://example.com/
Description: A WordPress theme converted from HTML template.
Version: 1.0
*/

body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: auto;
    padding: 20px;
}

header {
    background: #003366;
    color: white;
    padding: 15px 0;
}

header h1 {
    margin: 0;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li {
    margin: 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    background: url('../images/banner.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 100px 20px;
    background-color: #004080;
}

.hero h2 {
    font-size: 2em;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background: #ff9933;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
}

.services {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}

.service-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    flex: 1;
    text-align: center;
}

.about, .contact {
    margin-top: 40px;
    background: white;
    padding: 20px;
    border-radius: 10px;
}

footer {
    background: #003366;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 30px;
}
