* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    background-color: #f5f9ff;
    min-height: 100vh;
    display: grid;
    grid-template-areas: 
        "panel1 panel1"
        "panel2 panel3"
        "panel4 panel4";
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr auto;   
}


.c_cos_header {
	grid-area: panel1; 
    background-color: #001f5f;
    color: white;
    padding: 0.8rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.c_header_row_1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.c_logo_area {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.c_mobile_menu_icon {
    display: none;
    background: rgba(255,255,255,0.15);
    border: none;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

.c_header_row_2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.8rem 1.5rem;
    border-top: 1px solid #2f4b8f;
    padding-top: 0.8rem;
}

.c_nav-links {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    flex-wrap: wrap;
}

.c_nav-links a {
    color: #f0f5ff;
    text-decoration: none;
    font-weight: 550;
    font-size: 1rem;
    padding: 0.2rem 0;
    border-bottom: 2px solid transparent;
    transition: 0.15s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.c_nav-links a i {
    color: #ffd966;
    font-size: 1rem;
    width: 1.2rem;
    text-align: center;
}

.c_nav-links a:hover {
    border-bottom-color: #ffd966;
    color: white;
}

.c_header_right_tools {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

.c_cwy_logo{
		   height:30px;
		}
		.c_cwy_logo > img{
  height:100% 
		} 		
		
.c_dropdown {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: -15px;
}

    

.c_dropdown:hover .c_dropdown_menu,
.c_dropdown:focus-within .c_dropdown_menu,
.c_dropdown_menu:hover {
    display: block;
}

   
.c_dropdown {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: -15px;
}

.c_dropdown_btn {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50px;
    padding: 0.2rem 1rem 0.2rem 0.2rem;
    gap: 0.5rem;
    color: white;
			height: 40px;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s;
    position: relative;
    z-index: 1001;
}

.c_dropdown_btn:hover {
    background: rgba(255,255,255,0.25);
}

.c_dropdown_btn .c_dropdown_user {
    background: #ffd966;
    color: #001f5f;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.c_dropdown_arrow {
    color: #ffd966;
    font-size: 0.8rem;
			width: 12px;
    height: 12px;
}

.c_dropdown_menu {
    position: absolute;
    top: calc(100% - 7px);
    right: 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 30, 60, 0.3);
    min-width: 160px;
    z-index: 1000;
    display: none;
    overflow: hidden;
    border: 1px solid #d9e6f5;
}





.c_dropdown_menu > a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    color: #1e3f62;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background 0.1s;
    border: none;
}

.c_dropdown_menu > a > i {
    width: 20px;
    color: #2a7de1;
}

.c_dropdown_menu > a:hover {
    background: #e2edff;
}
		
.c_dropdown_menu > a.selected{
    pointer-events: none;
    color: #a1a29f;
}




.c_left_menu {
    grid-area: panel2;
	margin: 30px 15px 20px 30px;	
    background: white;
    border-radius: 28px;
    box-shadow: 0 15px 30px -15px rgba(20,60,120,0.2);
    width: 280px;
    border: 1px solid #e1ecfb;
    align-self: flex-start;
    display: flex;
    flex-direction: column;
    height: fit-content;
}

.c_left_menu_header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 1rem 1rem 1rem 1.5rem;
   border-bottom: 2px solid #ecf3fc;
   background: white;
   border-radius: 28px 28px 0 0;
   margin-bottom: 0.2rem;
}

.c_left_menu_header h3 {
    font-size: 1.2rem;
    font-weight: 650;
    color: #1a3c61;
}

.c_left_menu_header h3 i {
    color: #2a7de1;
    margin-right: 8px;
}

.c_left_menu_close {
    display: none;
    background: #f0f5fc;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #1e3f62;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    float: right;
}

.c_left_menu_items_panel {
    flex: 1;
    overflow-y: auto;
    padding: 0 0.5rem 0 1rem;
    scrollbar-width: thin;
    scrollbar-color: #cbd6e4 #f0f5fc;
    min-height: 0;
}

.c_left_menu_items_panel::-webkit-scrollbar {
    width: 5px;
}

.c_left_menu_items_panel::-webkit-scrollbar-track {
    background: #f0f5fc;
    border-radius: 10px;
}

.c_left_menu_items_panel::-webkit-scrollbar-thumb {
    background: #cbd6e4;
    border-radius: 10px;
}

.c_left_menu_items_panel::-webkit-scrollbar-thumb:hover {
    background: #a8b9ce;
}

.c_left_menu_items {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 20px 0 20px 0;
}

.c_left_menu_item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1rem;
    border-radius: 18px;
    color: #2c4f78;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.1s;
}

.c_left_menu_item:hover {
		   background: #f3f2fc;
		}
.c_left_menu_item i {
    font-size: 1.25rem;
    width: 28px;
    color: #3973b5;
}

.c_left_menu_item.active {
    background: #e2edff;
    color: #0a2a4a;
    font-weight: 600;
    box-shadow: inset 4px 0 0 #2a7de1;
}

.c_left_menu_item.c_has_submenu {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
	flex-direction: column;
}

.c_left_menu_item .arrow {
	display: flex; 
    color: #8aa9cc;
    font-size: 0.8rem;
    transition: transform 0.2s;
	justify-content: center;
    align-items: center;
	width: 23px;
	margin-left: auto;
}

.c_left_menu_item.c_open >  .c_left_submenu{
   display: block;
}

.c_left_menu_item.c_open .arrow {
    transform: rotate(90deg);
}

.c_left_menu_item_det {display: flex; align-items: center; gap: 1rem;width: 100%;}
		
.c_left_submenu {
    list-style: none;
    padding-left: 0.5rem;
    margin: 0;
    display: none;
}

.c_left_submenu li {
    margin: 0.2rem 0;
			
}

.c_left_submenu a {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0.3rem 0 0.3rem 0;
    color: #3d6085;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.1s;
	transition: 0.4s;
    padding: 3px 0 3px 10px;
    border-radius: 12px;
	border: 1px dashed transparent;
    border-left: 4px solid transparent;
    width: 100%;
}

.c_left_submenu a i {
    width: 20px;
    color: #5f8fc9;
    font-size: 0.9rem;
	flex-shrink: 0;
}

.c_left_submenu li:hover a, .c_left_submenu a:hover {
    border: 1px dashed #86a3c1;
    border-left: 4px solid #86a3c1;
    color: #3d6085;
}

.c_left_submenu li a.active {
    border: 1px dashed #0b2f54;
    border-left: 4px solid #0b2f54;
    color: #0b2f54;	
}

.c_left_submenu li a.active i {
	color: #0b2f54;	
}

.c_main_panel {
    grid-area: panel3;
	margin: 30px 30px 20px 15px;	
    min-width: 0;
}

.c_main_panel_title { 
   font-size: 1.7rem;
   font-weight: 650;
   color: #0d2d4c;
   padding: 1.2rem 1.8rem;
   border-radius: 20px;
   background: #eff5ff;
   border-left: 5px solid #2a7de1;
} 
.c_main_panel_content {
    background: white;
    border-radius: 32px;
    box-shadow: 0 18px 35px -18px rgba(20,50,100,0.2);
    padding: 2rem 2.5rem;
    border: 1px solid #e6effa;
    max-width: 700px;
    color: #43434b;
    font-size: 14px;
}



.c_btn_primary{
    position: relative;
    padding: 0.9rem 2.5rem;
    border-radius: 60px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


.c_btn_primary {
    background: linear-gradient(145deg, #0b2a4a, #1a3f64);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.c_btn_primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(10, 40, 70, 0.3);
}

.c_btn_primary:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(10, 40, 70, 0.3);
	animation: c_buttonPop 0.2s ease;
}

.c_btn_primary i {
    transition: transform 0.3s ease;
}

.c_btn_primary:hover i {
    transform: scale(1.2) rotate(0deg);
}

.c_btn_second {
   background: linear-gradient(145deg, #aa4320, #6c2400);
}
.c_btn_third {
    background: linear-gradient(145deg, #2a7de1, #1a5cb0);
}

@keyframes c_buttonPop {
    0% { transform: scale(1); }
    50% { transform: scale(0.98); }
    100% { transform: scale(1); }
}



.c_cos_footer {
	grid-area: panel4;
    background: #ffffff;
    border-top: 1px solid #d9e6f5;
    padding: 2.5rem 2rem 2rem;
    margin-top: 2.5rem;
}

.c_footer_container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
}

.c_footer_policy_links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem 3.5rem;
}

.c_footer_policy_links a {
    text-decoration: none;
    color: #1e4d7c;
    font-weight: 520;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.c_footer_policy_links a i {
    color: #2a7de1;
}

.c_footer_policy_links a:hover {
    color: #2a7de1;
    border-bottom-color: #2a7de1;
}

.c_footer_copyright {
		    font-size: 14px;
    text-align: center;
    color: #1e3f62;
}

.c_footer_copyright .c_main_copyright {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    
}

.c_footer_copyright .c_trademark {
    color: #2d4f78;
    margin-top: 0.2rem;
}

.c_hide {display:none!important;}

@media (max-width: 860px) {
  .c_mobile_menu_icon {
     display: flex;
  }
    
  .c_left_menu {
     position: fixed;
     top: 0;
     left: 0;
     height: 100vh;
     width: 280px;
     z-index: 2000;
     border-radius: 0 28px 28px 0;
     transform: translateX(-120%);
     transition: transform 0.25s ease-out;
     box-shadow: 6px 0 35px rgba(0,25,50,0.2);
     max-height: 100vh;
     margin:0;
  }
    
  .c_left_menu.c_menu_open {
      transform: translateX(0);
  }
    
  .c_left_menu_close {
      display: flex;
  }
    
  .c_main_panel {
     margin: 30px 30px 20px 30px;	
  }
    
  .c_main_panel_content {
    max-width:stretch;
  }
    
  body.c_menu_active::before {
     content: '';
     position: fixed;
     top: 0; left: 0; width: 100%; height: 100%;
     background: rgba(0,20,40,0.3);
     backdrop-filter: blur(2px);
     z-index: 1999;
  }

  .c_left_menu_items_panel {
     max-height: calc(100vh - 95px);
  }
}

@media (max-width: 600px) {
  .c_header_row_1 {
    flex-direction: column;
    align-items: flex-start;
  }
    
  .c_header_row_2 {
    flex-direction: column;
    align-items: flex-start;
  }
    
  .c_header_right_tools {
    margin-left: 0;
    width: 100%;
    justify-content: space-between;
  }
    
  .c_nav-links {
    width: 100%;
    justify-content: space-around;
  }
    
  .c_footer_policy_links {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}
		
@media (max-width: 450px) {
  .c_cos_header {
      padding: 0.8rem 0.5rem;
  }
  .c_content {	
      padding: 2rem 0rem;
  }
  
  .c_main_panel {
     margin:0;
  }
  
  .c_main_panel_content {
      border:none;
	  padding: 2rem 1rem; 
	  border-radius: 0;
  }

  .c_cwy_logo{
	 height:23px;
  }
  
  .c_cos_footer {
     margin-top: 0.5rem;
  }			
}
		
