body {
    font-family: 'Cairo', sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
}

.logo-container {
    background: linear-gradient(90deg, #00703C 0%, #EF3340 100%);
    padding: 20px;
}

.logo-container img {
    max-width: 220px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #00472B;
    text-align: center;
}

nav ul li {
    display: inline-block;
    position: relative;
    padding: 15px;
}

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

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #006644;
    width: 220px;
    text-align: left;
    z-index: 1000;
}

.dropdown-menu li {
    display: block;
    padding: 10px;
}

.dropdown-menu li a {
    color: white;
    font-size: 14px;
    display: block;
    padding: 10px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a:hover {
    background: white;
    color: #00703C;
}

.product-container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.product-details {
    width: 70%;
}

.product-details img {
    width: 100%;
    max-width: 600px;
}

.sidebar {
    width: 25%;
    background: #e2f1ec;
    padding: 20px;
    border-radius: 5px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    padding: 10px 0;
}

.sidebar ul li a {
    color: black;
    text-decoration: none;
    font-weight: bold;
}

.sidebar ul li a.active {
    color: #00703C;
    font-weight: bold;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.spec-table th, .spec-table td {
    border: 1px solid #00703C;
    padding: 10px;
    text-align: center;
}

.spec-table th {
    background: #00703C;
    color: white;
    font-weight: bold;
}

.lang-selector {
    position: absolute;
    right: 20px;
    top: 10px;
}

.lang-selector button {
    background: transparent;
    border: none;
    cursor: pointer;
    margin: 0 3px;
}

.lang-selector img {
    width: 30px;
    height: 20px;
}

.dealer-info {
    padding: 30px 20px;
    font-size: 18px;
    font-weight: normal;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    text-align: justify;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px;
    gap: 40px;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
}

.contact-info-section {
    flex: 2;
    text-align: left;
}

.contact-info-section ul {
    list-style: none;
    padding: 0;
}

.contact-info-section li {
    padding: 10px 0;
}

iframe {
    width: 100%;
    height: 100vh;
    border: none;
}
