:root {
    --primary-color: #0033A1; /* Updated Blue */
    --primary-opacity: rgba(76, 107, 175, 0.8);

    --secondary-color: #b9c7d6; /* Optional secondary accent */
    --accent-color: #0033A1; /* Using primary as accent per instructions */
    --text-dark: #221C35;
    --text-light: #f1faee;
    --bg-light: #e6e7eb;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    
    --font-en: 'Open Sans', 'Cairo', 'Myriad Pro', 'Calibri', 'Arial', sans-serif;
    --font-ar: 'Open Sans', 'Cairo', 'A Jannat LT', 'Arial', sans-serif;
    --font-en-bold: 'Open Sans', 'Cairo', 'Myriad Pro', 'Calibri', 'Arial', sans-serif;
    --font-ar-bold: 'Open Sans', 'Cairo', 'A Jannat LT Bold', 'Arial', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-en);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    transition: direction 0.3s ease;
}

body.rtl {
    direction: rtl;
    font-family: var(--font-ar);
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

.text-center {
    text-align: center;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    margin-bottom: 1rem;
}

body.rtl h1, body.rtl h2, body.rtl h3,
body.rtl h4, body.rtl h5, body.rtl h6 {
    font-family: var(--font-ar-bold);
}

button, input, select, textarea {
    font-family: inherit;
}

.post-body,
.post-body p,
.post-body h1, .post-body h2, .post-body h3,
.post-body h4, .post-body h5, .post-body h6,
.post-body li, .post-body span, .post-body div,
.post-body blockquote, .post-body td, .post-body th {
    font-family: inherit;
}

/* Glassmorphism */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 75px;
    object-fit: contain;
}

.btn-outline {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    border-radius: 50px;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: url('/images/hero-bg.png') center/cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-opacity);
    z-index: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.floating-element {
    position: absolute;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

.e1 { top: -10%; right: -10%; width: 50%; }
.e2 { bottom: -10%; left: -10%; width: 40%; animation-delay: 2s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    z-index: 1;
    position: relative;
}

.hero h1 {
    font-size: 4rem;
    color: var(--primary-color);
}

.tagline {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0,95,115,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,95,115,0.4);
}

/* History */
.section-padding {
    padding: 30px 0;
}
@media (max-width: 768px) {
    .section-padding {
        padding: 20px 0;
    }
}

.history-item {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.history-item.reverse {
    flex-direction: row-reverse;
}

.history-img img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.history-img-trans img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

body.rtl .history-img-trans img {
    transform: scaleX(-1);
}

.history-text {
    flex: 1;
}

.history-text h2 {
    color: var(--primary-color);
    font-size: 2rem;
}

/* Products */
.glass-bg {
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(240,248,255,0.9));
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 1rem 2rem;
    border: none;
    background: transparent;
    font-size: 1.1rem;
    color: var(--text-dark);
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    font-weight: bold;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: start;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.accordion-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    margin-bottom: 0; /* Remove bottom margin as gap handles spacing, or keep if needed for flex fallback */
    height: fit-content; /* Ensure it wraps content */
}

.accordion-header {
    background: white;
    padding: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    color: var(--primary-color);
    transition: background 0.2s;
}

.accordion-header:hover {
    background: #f1f1f1;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fafafa;
}

.accordion-content ul {
    list-style: none;
    padding: 1rem;
}

.accordion-content li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.accordion-content li:last-child {
    border-bottom: none;
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
}

.accordion-item.active .accordion-header::after {
    content: '-';
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form {
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.contact-alert {
    padding: 1rem 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.5;
    border: 1px solid transparent;
}

.contact-alert-success {
    background: rgba(0, 153, 76, 0.08);
    border-color: rgba(0, 153, 76, 0.25);
    color: #0a6a3a;
}

.contact-alert-error {
    background: rgba(200, 0, 30, 0.06);
    border-color: rgba(200, 0, 30, 0.25);
    color: #9a0a1f;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 12px;
    background: rgba(255,255,255,0.9);
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 51, 161, 0.1);
}

.contact-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    direction: ltr;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 1.5rem;
    pointer-events: none;
}

.carousel-nav button {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: all 0.3s ease;
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.carousel-nav button:hover {
    background: white;
    transform: scale(1.1);
}

.info-block {
    padding: 2.5rem;
}

.info-details {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.info-details p {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
}

/* Footer */
.footer {
    background: white;
    padding: 2rem 0 0.5rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-content {
    display: flex;
    flex-direction: column;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer-logo {
    height: 75px;
}

.footer-brand h3 {
    margin-bottom: 0;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.footer-contact-details {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.contact-group {
    display: flex;
    flex-direction: column;
}

.contact-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #6a6a6a;
    margin-bottom: 0;
    line-height: 1.1;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #9a9a9a;
    font-weight: 400;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: auto auto;
    gap: 0.5rem 3rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #555;
    font-size: 0.95rem;
    font-weight: 600;
}

.contact-info-item i {
    color: #999;
    width: 18px;
    text-align: center;
    font-size: 1.1rem;
}

.footer-copyright {
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.footer-copyright p {
    font-size: 0.7rem;
    color: #999;
}

@media (max-width: 1100px) {
    .footer-main {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 992px) {
    .footer-contact-details {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        gap: 3rem;
    }
    .footer-contact-details {
        flex-direction: column;
        gap: 1.5rem;
    }
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

.reveal-left, .reveal-right, .reveal-up {
    opacity: 0;
    transition: all 1s ease;
}

.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-up { transform: translateY(30px); }

.reveal-left.visible, .reveal-right.visible, .reveal-up.visible {
    opacity: 1;
    transform: translate(0);
}

/* Responsive */
@media (max-width: 768px) {
    .history-item, .history-item.reverse {
        flex-direction: column;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
}

/* Partners Carousel */
.partners-carousel {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    padding: 2rem 0; /* Add padding for aesthetics */
    border-radius: 20px; /* Match history img radius */
}

.partners-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.partners-track img {
    height: 80px;
    width: 180px;
    object-fit: contain;
    margin: 0 2rem;
    flex-shrink: 0;
}

.partners-track img:nth-child(6n+2) {
    transform: scale(0.8);
}

.partners-track img:nth-child(6n+4) {
    transform: scale(1.2);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scroll-rtl {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

body.rtl .partners-track {
    animation: scroll-rtl 30s linear infinite;
}

.partners-desc {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.partners .partners-carousel {
    margin: 0 auto;
    max-width: 1920px;
}

.hero-logo {
    max-width: 80%;
    height: auto;
    max-height: 150px;
}

/* ===== Navigation enhancement ===== */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-outline.btn-blog {
    text-decoration: none;
    display: inline-block;
}

/* ===== Blog Layout ===== */
.blog-page {
    padding-top: 120px;
    min-height: 100vh;
    background: linear-gradient(180deg, var(--bg-light) 0%, #ffffff 100%);
}

.blog-hero {
    text-align: center;
    padding: 2rem 0 3rem;
}

.blog-hero h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.blog-hero p {
    font-size: 1.15rem;
    color: #555;
    max-width: 720px;
    margin: 0 auto;
}

.blog-section-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    border-left: 5px solid var(--primary-color);
    padding-left: 1rem;
}

body.rtl .blog-section-title {
    border-left: none;
    border-right: 5px solid var(--primary-color);
    padding-left: 0;
    padding-right: 1rem;
}

/* Featured section */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.featured-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    min-height: 380px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: #fff;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,51,161,0.2);
}

.featured-card .card-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #d8e0ed;
    position: relative;
}

.featured-card .card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,51,161,0.6) 100%);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
}

body.rtl .featured-badge,
.featured-card[dir="rtl"] .featured-badge {
    left: auto;
    right: 1rem;
}

.featured-card[dir="ltr"] .featured-badge {
    right: auto;
    left: 1rem;
}

.featured-card .card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.featured-card .card-body h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.featured-card .card-body p {
    color: #555;
    flex: 1;
    font-size: 0.95rem;
}

.featured-card .card-meta {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #888;
}

/* Recent posts grid */
.recent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding-bottom: 4rem;
}

.recent-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.recent-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,51,161,0.15);
}

.recent-card .card-image {
    height: 160px;
    background-size: cover;
    background-position: center;
    background-color: #e6e7eb;
}

.recent-card .card-body {
    padding: 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.recent-card .card-body h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.recent-card .card-body p {
    color: #666;
    font-size: 0.88rem;
    flex: 1;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recent-card .card-meta {
    font-size: 0.78rem;
    color: #999;
}

.blog-empty {
    text-align: center;
    padding: 4rem 1rem;
    color: #888;
    font-size: 1.1rem;
}

/* ===== Single post page ===== */
.post-page {
    padding-top: 120px;
    padding-bottom: 4rem;
    background: var(--bg-light);
}

.post-container {
    max-width: 880px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    overflow: hidden;
}

.post-cover {
    width: 100%;
    height: 420px;
    background-size: cover;
    background-position: center;
    background-color: #d8e0ed;
}

.post-content {
    padding: 3rem;
}

.post-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.post-meta {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.post-meta .badge {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.post-excerpt {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 2rem;
    font-style: italic;
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
}

body.rtl .post-excerpt {
    border-left: none;
    border-right: 4px solid var(--primary-color);
    padding-left: 0;
    padding-right: 1rem;
}

.post-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.post-body p { margin-bottom: 1.2rem; }
.post-body h2 { font-size: 1.8rem; color: var(--primary-color); margin: 2rem 0 1rem; }
.post-body h3 { font-size: 1.4rem; color: var(--primary-color); margin: 1.5rem 0 0.75rem; }
.post-body ul, .post-body ol { margin: 1rem 0 1.5rem 1.5rem; }
.post-body li { margin-bottom: 0.5rem; }
.post-body a { color: var(--primary-color); text-decoration: underline; }
.post-body img { max-width: 100%; border-radius: 12px; margin: 1.5rem 0; }
.post-body blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 0.5rem 1rem;
    margin: 1.5rem 0;
    color: #555;
    font-style: italic;
    background: #f7f9fc;
    border-radius: 4px;
}

.post-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.post-section h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
}

.post-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
}

.post-gallery img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.post-gallery img:hover { transform: scale(1.03); }

.post-references ul,
.post-related ul {
    list-style: none;
    padding: 0;
}

.post-references li,
.post-related li {
    padding: 0.75rem 1rem;
    background: #f7f9fc;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    border-left: 3px solid var(--primary-color);
}

body.rtl .post-references li,
body.rtl .post-related li {
    border-left: none;
    border-right: 3px solid var(--primary-color);
}

.post-references a,
.post-related a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: block;
}

.post-references a:hover,
.post-related a:hover {
    text-decoration: underline;
}

.post-references .ref-source {
    display: block;
    font-size: 0.85rem;
    color: #666;
    font-weight: normal;
    margin-top: 0.25rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.back-link:hover { text-decoration: underline; }

@media (max-width: 768px) {
    .blog-hero h1 { font-size: 2.2rem; }
    .post-content { padding: 1.5rem; }
    .post-content h1 { font-size: 1.8rem; }
    .post-cover { height: 240px; }
}
