/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    direction: rtl; /* For Right-to-Left languages like Persian */
    text-align: right; /* Align text to the right */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
}

/* Header */
header {
    background: #2c3e50;
    color: #fff;
    padding-top: 20px;
    min-height: 70px;
    border-bottom: #77aaff 3px solid;
}

header h1 {
    float: right;
    margin: 0;
    padding: 0;
}

header nav {
    float: left;
    margin-top: 10px;
}

header ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

header li {
    display: inline;
    padding: 0 15px;
}

header a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}

header a:hover {
    color: #77aaff;
    font-weight: bold;
}

/* Hero Section */
#hero {
    min-height: 400px;
    background: #34495e url('https://via.placeholder.com/1500x400?text=پس+زمینه+کامیون') no-repeat center center/cover; /* Placeholder image */
    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#hero h2 {
    font-size: 3em;
    margin-bottom: 10px;
}

#hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    color: #fff;
    background: #77aaff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #5588dd;
}

/* Featured Reviews Section */
#featured-reviews {
    padding: 40px 0;
    background: #fff;
    text-align: center;
}

#featured-reviews h3 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #2c3e50;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    justify-content: center;
}

.review-card {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: right;
}

.review-card img {
    max-width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
}

.review-card h4 {
    font-size: 1.8em;
    color: #34495e;
    margin-bottom: 10px;
}

.review-card p {
    font-size: 1.1em;
    margin-bottom: 15px;
}

.read-more {
    color: #77aaff;
    text-decoration: none;
    font-weight: bold;
}

.read-more:hover {
    text-decoration: underline;
}

/* About Section */
#about {
    padding: 40px 0;
    background: #e0e0e0;
    text-align: center;
}

#about h3 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #2c3e50;
}

/* Footer */
footer {
    background: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
}