* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tajawal', 'Arial', 'Segoe UI', sans-serif;
    direction: rtl;
    text-align: right;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

body.loading {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Tajawal', 'Arial', 'Segoe UI', sans-serif;
}

p, span, a, li, button, input, textarea {
    font-family: 'Tajawal', 'Arial', 'Segoe UI', sans-serif;
}

/* Loader Styles */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #244375 0%, #2c5282 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
    position: relative;
}

.loader-logo {
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.loader-logo img {
    width: 120px;
    height: auto;
    filter: brightness(0) invert(1);
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: #6BB77B;
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 
=======================================================
   تعليمات تخصيص الصور - Image Customization Guide
=======================================================

لتغيير صورة الهيرو (الصفحة الرئيسية):
- غيّر قيمة --hero-image أو استخدم data-bg في HTML

لتغيير صورة رأس الفريق الإداري:
- الطريقة الأولى: غيّر قيمة --team-header-image أدناه
- الطريقة الثانية: أضف data-team-bg="path/to/image.jpg" في HTML

مثال: --team-header-image: url("images/team-photo.jpg");
أو:    data-team-bg="images/team-photo.jpg"

=======================================================
*/

/* Global Variables */
:root {
    --hero-image: url("https://images.unsplash.com/photo-1526498460520-4c246339dccb?q=80&w=1920&auto=format&fit=crop");
    --hero-image-mobile: url("assets/phone\ banner.png");
    --services-title-image: url("assets/02.png");
    --services-title-image-mobile: url("assets/02-mobile.png");
    --text-color: #fff;
    --accent: #22c55e;
    --accent-ink: #0a0f0a;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scroll Reveal Classes */
.scroll-reveal {
    opacity: 0;
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0) !important;
}

.scroll-fade-up {
    opacity: 0;
    transform: translateY(30px);
}

.scroll-fade-left {
    opacity: 0;
    transform: translateX(-30px);
}

.scroll-fade-right {
    opacity: 0;
    transform: translateX(30px);
}

.scroll-scale {
    opacity: 0;
    transform: scale(0.9);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    background: var(--hero-image) center/cover no-repeat;
}

.hero header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: transparent;
    z-index: 100;
}

.hero .logo {
    display: flex;
    align-items: center;
}

.hero .logo-image {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.5));
}

.hero .logo-text {
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero .contact-btn {
    padding: 0;
    background: transparent;
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.3s;
    font-family: 'Tajawal', sans-serif;
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
}

.hero .contact-btn:hover {
    opacity: 0.8;
}

/* About Section - New Design */
.about-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.about-new-layout {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

/* Left Side: Vision and Mission */
.about-left {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.about-icons-container {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.vm-icons {
    height: 300px;
    width: auto;
    object-fit: contain;
}

.about-text-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    flex-grow: 1;
}

.about-item {
    display: flex;
    flex-direction: column;
}

.about-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #244375;
    margin-bottom: 0.8rem;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.625;
    color: #1f2937;
}

.leading-relaxed {
    line-height: 1.625;
}

.font-normal {
    font-weight: 400;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.mb-10 {
    margin-bottom: 2.5rem;
}

.highlight-text {
    font-weight: 700;
    background: linear-gradient(180deg, transparent 60%, rgba(147, 112, 219, 0.7) 60%, rgba(147, 112, 219, 0.2) 100%);
    display: inline;
    padding: 0 2px;
    white-space: nowrap;
}

/* Right Side: Who We Are Image Card */
.about-right {
    display: flex;
}

.about-image-card {
    width: 90%;
    min-height: 500px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    /*
    ========================================
    INSTRUCTIONS TO ADD YOUR IMAGE:
    ========================================
    Replace the background below with your image:
    background-image: url('path/to/your/image.jpg');

    Example:
    background-image: url('assets/about-image.jpg');
    or
    background-image: url('https://your-image-url.com/image.jpg');
    ========================================
    */
    background-image: url('assets/image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}

.about-image-overlay h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-image-overlay h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #6BB77B;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.about-image-overlay p {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.95;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 20px;
    background: white;
}

.why-choose-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
    margin: 0 auto 3rem auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.why-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: right;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.4s ease-out;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #e5e5e5;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.why-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #244375;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.why-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #244375;
}

.underline-text {
    position: relative;
    display: inline;
    padding: 0 2px;
    z-index: 1;
}

.underline-text::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 0;
    left: 0;
    height: 10px;
    background: linear-gradient(to left,
        rgba(147, 112, 219, 0.8) 0%,
        rgba(147, 112, 219, 0.5) 50%,
        rgba(147, 112, 219, 0.2) 100%
    );
    border-radius: 10px;
    z-index: -1;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.white-title {
    color: white;
}

/* Services Section */
.services-section {
    padding: 80px 20px;
    background: #f8f9fa;
    color: #333;
}

.services-title-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto 3rem auto;
}

.services-title-image-mobile {
    display: none;
}

.team-banner-image-mobile {
    display: none;
}

.admin-team-title-image-mobile {
    display: none;
}

.services-title-image:hover {
    transform: scale(1.02);
}

.services-section .section-title {
    color: #2c3e50;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: right;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.4s ease-out;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.green-service {
    background: transparent;
    color: #333;
}

.blue-service {
    background: transparent;
    color: #333;
}

.service-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: white;
}

.green-service .service-number {
    background: #27ae60;
    border: 2px solid #27ae60;
}

.blue-service .service-number {
    background: #244375;
    border: 2px solid #244375;
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    line-height: 1.3;
    color: #244375;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.service-list li {
    font-size: 0.8rem;
    margin-bottom: 0.6rem;
    padding-right: 1rem;
    position: relative;
    line-height: 1.4;
    opacity: 0.95;
    color: #244375;
}

.service-list li:before {
    content: '•';
    position: absolute;
    right: 0;
    color: #27ae60;
    font-weight: bold;
}

/* New Administrative Team Section */
.admin-team-section {
    padding: 0 0 80px 0;
    background: #f8f9fa;
}

.team-header {
    margin-bottom: 3rem;
}

/* صورة رأس الفريق الإداري - لتغيير الصورة: استبدل src في HTML */
.team-banner-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
    display: block;
}

.team-banner-image:hover {
    transform: scale(1.02);
}

/* تحسين للشاشات الكبيرة */
@media screen and (min-width: 1400px) {
    .team-banner-image {
        border-radius: 20px;
    }
}



.team-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.team-card {
    background: transparent;
    padding: 1.5rem;
    text-align: right;
    transition: transform 0.3s ease, opacity 0.4s ease-out;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.team-card:hover {
    transform: translateY(-2px);
}

.team-position-title {
    background: linear-gradient(135deg, #6BB77B, #7BC88A);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    padding: 0.8rem 3.2rem;
    border-radius: 12px;
    text-align: center;
    display: inline-block;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
}

.team-description {
    color: #244375;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    text-align: right;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* New Consulting Team Section */
.new-consulting-team-section {
    padding: 80px 20px;
    background: white;
}

.new-consulting-team-section .admin-team-title-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
    margin: 0 auto 3rem auto;
}

.consultants-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.consultant-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.4s ease-out;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #e5e5e5;
}

.consultant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.consultant-photo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    margin: 0 auto 1.5rem auto;
    display: block;
}

.consultant-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #6BB77B;
    margin-bottom: 0.5rem;
    white-space: nowrap;
}

.consultant-position {
    font-size: 1rem;
    font-weight: 600;
    color: #244375;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.consultant-bio {
    font-size: 0.85rem;
    line-height: 1.7;
    color: #244375;
    text-align: right;
}

/* Partners Section */
.partners-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.partners-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
    background: #244375;
    color: white;
    padding: 40px 20px;
    border-radius: 50px 50px 0 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-image {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.footer-contact {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.contact-item span {
    font-size: 0.95rem;
    color: white;
    white-space: nowrap;
}

.contact-item a {
    color: white;
    text-decoration: none;
}

.contact-item a:hover {
    color: white;
    opacity: 0.8;
}

/* Hero Mobile Styles */
@media screen and (max-width: 768px) {
    .about-icons-container {
        display: none;
    }

    .admin-team-title-image,
    .new-consulting-team-section .admin-team-title-image {
        display: none !important;
    }

    .admin-team-title-image-mobile {
        display: block;
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center;
        margin: 0 auto 3rem auto;
    }

    .hero header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
    }
    
    .hero .logo-image {
        height: 60px;
    }

    .hero .logo-text {
        font-size: 2.5rem;
    }

    .hero .contact-btn {
        width: auto;
        text-align: center;
        padding: 0;
        font-size: 0.95rem;
    }

    .about-right {
        justify-content: center;
    }

    .about-image-card {
        width: 100%;
        min-height: 400px;
    }

    .about-image-overlay {
        padding: 2rem;
    }

    .about-image-overlay h2 {
        font-size: 1.8rem;
        line-height: 1.4;
    }

    .about-image-overlay h4 {
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .about-image-overlay p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .hero {
        background: var(--hero-image-mobile) center/cover no-repeat;
    }
}

@media screen and (max-width: 480px) {
    .about-icons-container {
        display: none;
    }

    .services-title-image {
        display: none;
    }

    .services-title-image-mobile {
        display: block;
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        margin: 0 auto 3rem auto;
    }

    .team-banner-image {
        display: none;
    }

    .team-banner-image-mobile {
        display: block;
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center;
        border-radius: 10px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        transition: transform 0.3s ease;
    }

    .admin-team-title-image,
    .new-consulting-team-section .admin-team-title-image {
        display: none !important;
    }

    .admin-team-title-image-mobile {
        display: block;
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center;
        margin: 0 auto 3rem auto;
    }

    .hero .logo-image {
        height: 50px;
    }

    .hero .logo-text {
        font-size: 2rem;
    }

    .hero .contact-btn {
        font-size: 0.9rem;
        padding: 0;
    }

    .about-new-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-left {
        flex-direction: column;
        gap: 2rem;
    }

    .vm-icons {
        height: 300px;
    }

    .about-text-container {
        gap: 2rem;
    }

    .about-right {
        justify-content: center;
    }

    .about-image-card {
        min-height: 350px;
        width: 100%;
    }

    .about-image-overlay {
        padding: 1.5rem;
    }

    .about-image-overlay h2 {
        font-size: 1.5rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }

    .about-image-overlay h4 {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .about-image-overlay p {
        font-size: 0.85rem;
        line-height: 1.7;
    }

    .hero {
        background: var(--hero-image-mobile) center/cover no-repeat;
    }

    .why-choose-us {
        padding: 60px 2px;
    }

    .why-choose-us .container {
        padding: 0 2px;
    }

    .why-choose-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        margin-bottom: 2rem;
        border-radius: 8px;
        padding: 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.5rem;
    }

    .why-card {
        padding: 2rem;
    }

    .why-card h3 {
        font-size: 1.5rem;
    }

    .why-card p {
        font-size: 0.95rem;
    }

    .services-title-image {
        border-radius: 10px;
        margin-bottom: 2rem;
    }

    .new-consulting-team-section .admin-team-title-image {
        margin-bottom: 2rem;
    }

    .consultants-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .consultant-photo {
        width: 100px;
        height: 100px;
    }

    .consultant-name {
        font-size: 1.1rem;
    }

    .consultant-position {
        font-size: 0.9rem;
    }

    .consultant-bio {
        font-size: 0.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .team-banner-image {
        border-radius: 10px;
    }
    
    .team-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 1.2rem;
        max-width: 700px;
    }

    .partners-section {
        padding: 40px 5px;
    }

    .partners-image {
        border-radius: 10px;
        max-width: 100%;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-logo-image {
        height: 50px;
    }

    .footer-contact {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .team-banner-image {
        border-radius: 8px;
    }
    
    .team-cards-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
        gap: 1rem;
        max-width: 400px;
    }
    
    .team-position-title {
        font-size: 1rem;
        padding: 0.7rem 1rem;
    }
    
    .team-description {
        font-size: 0.85rem;
    }

    .partners-section {
        padding: 30px 2px;
    }

    .partners-section .container {
        padding: 0 2px;
    }

    .partners-image {
        border-radius: 8px;
        max-width: 100%;
    }

    .about-card {
        padding: 2rem;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
    }
}

/* Tablet Styles */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .about-icons-container {
        display: none;
    }

    .admin-team-title-image,
    .new-consulting-team-section .admin-team-title-image {
        display: none !important;
    }

    .admin-team-title-image-mobile {
        display: block;
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center;
        margin: 0 auto 3rem auto;
    }

    .about-new-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-left {
        flex-direction: column;
        gap: 2rem;
    }

    .vm-icons {
        height: 350px;
    }

    .why-choose-image {
        margin-bottom: 2.5rem;
        border-radius: 12px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .why-card {
        padding: 2.5rem;
    }

    .services-title-image {
        border-radius: 12px;
        margin-bottom: 2.5rem;
    }

    .new-consulting-team-section .admin-team-title-image {
        margin-bottom: 2.5rem;
    }

    .consultants-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(5, 1fr);
    }
    
    .team-banner-image {
        border-radius: 12px;
    }
    
    .team-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 1.5rem;
        max-width: 800px;
    }

    .partners-image {
        border-radius: 12px;
    }

}

/* Large Screen Adjustments */
@media screen and (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }

    .hero-content {
        max-width: 1400px;
    }

    .services-title-image {
        border-radius: 20px;
    }

    .partners-image {
        border-radius: 20px;
    }

    .services-grid {
        max-width: 1400px;
    }
}