
        /* Reset و استایل های پایه */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: 'Segoe UI';
            line-height: 1.6;
            color: #333;
            background-color: #D9D9D9;

        }
        
        .container {
            display: grid;
            grid-template-areas: 
                "header header header"
                "sidebar main-content main-content"
                "footer footer footer";
            grid-template-columns: 300px 1fr 1fr;
            min-height: 100vh;
        }
        
        /* استایل هدر */
        header {
            grid-area: header;
            background-color: #036A7F ;
            color: white;
            padding: 1.5rem;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            font-family: Arial, Helvetica, sans-serif;
        }
        .htitle {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
        
        /* استایل محتوای اصلی */
        .main-content {
            grid-area: main-content;
            padding: 2rem;
            display: flex;
            flex-direction: column;
        }
        
        /* استایل بخش درباره ما */
        .about-us {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            padding: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        .about-header {
            text-align: center;
            margin-bottom: 1.5rem;
        }
        
        .about-header h2 {
            color: #2c3e50;
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }
        
        .about-header p {
            color: #04849C;
            font-size: 1.2rem;
            font-weight: 500;
        }
        
        /* استایل نقشه */
        .map-container {
            width: 100%;
            height: 300px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* استایل آدرس */
        .address {
            background-color:#d0d2d4;
            border-radius: 8px;
            padding: 1.5rem;
            text-align: center;
        }
        
        .address h3 {
            color: #2c3e50;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #04849C;
        }
        
        .address p {
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        /* استایل لینک های تماس */
        .contact-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 1rem;
        }
        
        .phone-link {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: #04849C;
            color: white;
            text-decoration: none;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .phone-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(38, 117, 252, 0.4);
        }
        
                /* استایل سایدبار */
        .sidebar {
            grid-area: sidebar;
            padding: 1.5rem;
            background-color: #04849C;
            height: 100%;
            position: sticky;
            top: 0;
            align-self: start;
            
        }
        
        
        
        .sidebar-content {
            height: 100%;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        .sidebar-image-link {
            display: block;
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 150px;
            object-fit: cover;
            width: 100%;
            border: 3px solid #fff;
        }
         .sidebar-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .side-text{
            position: absolute;
             top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
            text-align: center;
            color: #fff;
            font-size: 3rem;
            font-weight: bold;
        }
        
        .sidebar-image-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }
        
        .sidebar-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .sidebar-image-text {
            position: absolute;
            bottom: 0;
            right: 0;
            left: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            color: white;
            padding: 1rem;
            text-align: center;
            font-size: 1.2rem;
            font-weight: bold;
        }
        
        /* استایل فوتر */
        footer {
            grid-area: footer;
            background-color: #036A7F ;
            color: white;
            padding: 1rem 5rem;
            text-align: center;
             line-height: 1.6;
             position: relative;

        }
        
        .footer-content {
            max-width: 500px;
            margin: 0 auto;
            line-height: 2rem;
            padding: 1rem 3rem ;
            padding-bottom: 1rem;
            display: block;
            
    
        }

        .loc{ 
    position: relative;
    text-decoration: none;
    border-bottom: 1px solid #fff;        
}
 .flink{
    text-decoration: none;
        color: #fff;
        
}
.flink:hover{
    color: aquamarine;
}


 iframe{
    width: 50%;
    height: 50%;
    padding-top: 1rem;

 }

 .call{
    border-bottom: 1px solid #fff;  
    padding: 1rem;  

 }
  .copyright{
    font-size: 13px;
 }
        
        /* رسپانسیو برای تبلت */
        @media (max-width: 1024px) {
            .container {
                grid-template-areas: 
                    "header header header"
                    "main-content main-content main-content"
                    "sidebar sidebar sidebar"
                    "footer footer footer";
                grid-template-columns: 1fr;
            }
            
            .sidebar {
                border-right: none;
                border-top: 1px solid #e0e0e0;
                height: auto;
                position: relative;
            }
            
            .sidebar-content {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .sidebar-image-link {
                width: 200px;
            }
            
            .contact-links {
                flex-direction: column;
                align-items: center;
            }
        }
        
        /* رسپانسیو برای موبایل */
        @media (max-width: 768px) {
            .container {
                grid-template-areas: 
                    "header"
                    "main-content"
                    "sidebar"
                    "footer";
                grid-template-columns: 1fr;
            }
            
            header, footer {
                padding: 1rem;
            }
            
            .main-content {
                padding: 1rem;
            }
            
            .about-us {
                padding: 1.5rem;
            }
            
            .sidebar-content {
                flex-direction: column;
            }
            
            .sidebar-image-link {
                width: 100%;
            }
            
            .map-container {
                height: 250px;
            }
        }
        
        /* رسپانسیو برای موبایل های کوچک */
        @media (max-width: 480px) {
            .about-header h2 {
                font-size: 1.5rem;
            }
            
            .about-header p {
                font-size: 1rem;
            }
            
            .map-container {
                height: 200px;
            }
            
            .address p {
                font-size: 1rem;
            }
            
            .phone-link {
                padding: 0.6rem 1.2rem;
                font-size: 0.9rem;
            }
        }
