/* ریست ساده برای یکنواختی مرورگرها */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

/* عنوان اصلی */
h1 {
    color: #3a73e8;      /* رنگ تیتر */
    font-size: 50px;     /* اندازه بزرگتر تیتر */
    line-height: 1.2;    /* فاصله بهتر خط */
    font-weight: 800;    /* ضخیم */
    margin-bottom: 30px;
}


}
header {
    display: flex;
    align-items: flex-start; /* آیتم‌ها از بالای کانتینر تراز شوند */
    justify-content: space-between;
    gap: 20px;
    padding: 10px 0;
}

header .logo {
    width: 120px;
    margin: 10; /* حذف فاصله بالا */
}

/* فونت پایه و رنگ پس‌زمینه کلی */
body {
    font-family: Arial, sans-serif;
    direction: rtl;
    line-height: 1.6;
    background-color: #fafafa;
    color: #333;
    padding: 20px;
}

/* لوگو سمت چپ */
img[alt="لوگو"] {
    float: left;
    width: 70px;
    margin-left: 10px;
    margin-right: 20px;
}

/* عنوان اصلی */
<title>شرکت بتن سازه آذربایجان</title>
h1
color: #1a73e8;      /* رنگ جدید تیتر — آبی نمونه، مقدار HEX را عوض کنید */
font-size: 60px;     /* اندازه فونت برای h1/h2/h3 — مقدار دلخواه */
line-height: 2;    /* فاصله عمودی بهتر */
font-weight: 900;    /* ضخامت */
margin-bottom: 30px;
}
 {
color: #1a73e8;
font-size: 100px;
line-height: 50px;
    color: #444;
    margin-bottom: 60px;
, h2, h3
}

/* بخش‌های اصلی */
section {
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

/* لیست منو (فرض بر اساس لینک‌ها در HTML) */
nav ul {
    list-style: none;
    background-color: #007bff;
    border-radius: 5px;
}

nav ul li {
    float: right;
}

nav ul li a {
    display: block;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
}

nav ul li a:hover {
    background-color: #0056b3;
}

/* تصاویر محتوا */
img {
    max-width: 100%;
    height: auto;
    margin: 10px 0;
}