@charset "utf-8";

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #343a40;
}

.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 3px solid #007bff;
    margin-bottom: 30px;
}

h1 {
    color: #212529;
    margin: 0 auto 20px;
    font-size: 2.5em;
}

h2 {
    color: #007bff;
    border-left: 5px solid #007bff;
    padding-left: 10px;
    margin-top: 40px;
    margin-bottom: 20px;
}

p {
    margin-bottom: 1em;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

ul li {
    margin-bottom: 10px;
}

.intro-text {
    font-size: 1.1em;
    color: #6c757d;
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.contact-info a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
}
.product_block a{
    display: block;
    width: 50%;
    margin: 0 auto;
}
.product_block a .product_item{
    border: 1px solid #e65c00;
    border-radius: 10px;
    width: 100%;
    margin: 0 auto;
    padding: 10px;
    transition: all .3s;
}

a{
    text-decoration: none;
}

.product_block a:hover .product_item{
    transform: translateY(-5px);
}

@media screen and (max-width: 768px){
    .product_block a{
        width: 100%;
    }
    .product_block a .product_item{
        width: 100%;
    }
}

#notice{
    margin-top: 20px;
    letter-spacing: -0.05em;
}