/* فونت و تنظیمات پایه */
body {
    font-family: Tahoma, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #ffffff; /* مشابه سایت piazdaagh.ir */
    color: #333;
}

/* هدر */
header {
    background-color: #f8f8f8;
    padding: 20px 0;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

header h1 {
    margin: 0;
    font-size: 28px;
    color: #d41f26; /* رنگ قرمز مشابه لوگو piazdaagh.ir */
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

/* بخش معرفی شرکت */
section#home {
    padding: 50px 20px;
    text-align: center;
}

section#home h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

section#home img {
    max-width: 150px;
    margin-top: 20px;
}

/* بخش محصولات */
section#products {
    background-color: #fdf0f0;
    padding: 50px 20px;
    text-align: center;
}

section#products h2 {
    font-size: 24px;
    margin-bottom: 30px;
}

.product {
    display: inline-block;
    width: 250px;
    margin: 15px;
    vertical-align: top;
    text-align: center;
}

.product img {
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.product h3 {
    margin-top: 10px;
    color: #d41f26;
}

.product p {
    font-size: 14px;
}

/* بخش مزایا */
section#advantages {
    padding: 50px 20px;
    text-align: center;
}

section#advantages ul {
    list-style: none;
    padding: 0;
}

section#advantages ul li {
    margin: 10px 0;
    font-weight: bold;
    color: #555;
}

/* درباره ما */
section#about {
    background-color: #f8f8f8;
    padding: 50px 20px;
    text-align: center;
}

/* تماس با ما */
section#contact {
    padding: 50px 20px;
    text-align: center;
}

section#contact form {
    max-width: 400px;
    margin: 0 auto;
}

section#contact input, section#contact textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

section#contact button {
    background-color: #d41f26;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
}

/* پاورقی */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}