.static-page-container {
    direction: rtl;
    text-align: right;
    margin: 0 auto;
}

.static-page-title {
    font-size: 32px;
    font-weight: 900;
    color: #212529;
    margin-bottom: 10px;
    text-align: center;
}

.static-page-slogan {
    text-align: center;
    color: #007AFF;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.5px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #dee2e6;
}

.static-page-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 16px;
}

.static-page-content {
    font-size: 16px;
    color: #444;
    line-height: 1.9;
    text-align: justify;
}

.static-page-content p {
    margin-bottom: 18px;
    font-weight: 300;
}

.static-page-content h2 {
    font-size: 22px;
    font-weight: 900;
    margin: 40px 0 16px;
    color: #000;
    border-right: 4px solid #007AFF;
    padding-right: 12px;
}

.static-page-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 24px 0 10px;
    color: #333;
}

.static-page-content ul {
    padding-right: 20px;
    margin-bottom: 20px;
}

.static-page-content ul li {
    margin-bottom: 10px;
    line-height: 1.8;
    list-style-type: square;
}

.static-page-content .highlight-box {
    background-color: #fff3cd;
    border: 1px solid #ffecb5;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    color: #856404;
    font-size: 15px;
}

.static-page-content a {
    color: #007AFF;
    font-weight: 500;
    text-decoration: none;
}

.static-page-content a:hover {
    text-decoration: underline;
}

.faq-section-title {
    font-size: 20px;
    font-weight: 800;
    color: #495057;
    margin-top: 40px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.faq-section-title::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #007AFF;
    border-radius: 50%;
    margin-left: 10px;
}

.accordion-item {
    border: 1px solid #eee;
    border-radius: 12px !important;
    margin-bottom: 15px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.01);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 8px 15px rgba(0,0,0,0.05);
    border-color: #e3f2fd;
}

.accordion-button {
    font-weight: 700;
    font-size: 16px;
    color: #444;
    background-color: #fff;
    padding: 20px;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: #007AFF;
    background-color: #f8faff;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
}

.accordion-button::after {
    margin-left: 0;
    margin-right: auto;
}

.accordion-body {
    font-size: 15px;
    line-height: 2.2;
    color: #555;
    text-align: justify;
    padding: 25px;
    background-color: #fff;
}

.value-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 6px rgba(0,0,0,0.01);
}

.value-box:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: #cce5ff;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #0d6efd;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
}

.value-box h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #333;
}

.value-box p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.about-text {
    font-size: 16px;
    line-height: 2;
    color: #444;
    text-align: justify;
}

.about-text h2 {
    font-size: 24px;
    font-weight: 800;
    color: #000;
    margin-top: 30px;
    margin-bottom: 20px;
    position: relative;
    padding-right: 15px;
}

.about-text h2::before {
    content: '';
    position: absolute;
    right: 0;
    top: 5px;
    bottom: 5px;
    width: 4px;
    background-color: #007AFF;
    border-radius: 2px;
}

.company-info-box {
    background-color: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    padding: 30px;
}

.company-info-title {
    font-weight: 700;
    color: #495057;
    margin-bottom: 15px;
    display: block;
}

.company-name {
    font-weight: 900;
    color: #000;
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
}

.contact-box {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.contact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    border-color: #007AFF;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: #f0f7ff;
    color: #007AFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}

.contact-box h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.contact-box p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 5px;
}

.contact-box a {
    color: #007AFF;
    text-decoration: none;
    font-weight: 500;
    direction: ltr;
    display: inline-block;
}

.contact-box a:hover {
    text-decoration: underline;
}

.contact-form-wrapper {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #e0e0e0;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    min-height: 300px;
    border: 1px solid #e0e0e0;
}

@media (max-width: 768px) {
    .static-page-title {
        font-size: 26px;
    }

    .static-page-slogan {
        font-size: 16px;
    }

    .accordion-button {
        font-size: 14px;
        padding: 15px;
    }

    .contact-box {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .static-page-content {
        font-size: 15px;
    }

    .static-page-title {
        font-size: 24px;
    }
}
