
    :root {
          --primary-blue: #5dade2;
          --secondary-blue: #1470b7;
          --accent-red: #d90429;
          --light-bg: #f2f6ff;
          --white: #ffffff;
          --text-dark: #333333;
          --text-light: #666666;
          --transition: all 0.3s ease;
          --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

    * { 
        margin:0;
        padding:0;
        box-sizing:border-box;
        font-family:'Open Sans', sans-serif;
        list-style-type: none;
    }
    body { background: var(--light-bg); color: var(--text-dark); line-height:1.6; }

    /* ===== NAVBAR STYLES IMPORTED FROM navbar.css ===== */


        /* ===== NAVBAR 
        STYLES IMPORTED FROM navbar.css ===== */
        a {
          text-decoration: none;
          color: inherit;
        }
        
        .show {
          display: flex;
        }
          


        .container .navbar{
          width:95%;
          margin: auto;
          display:flex;
          align-items: center;
          justify-content: space-between;
        }



        @media (max-width: 850px) {

          nav ul {
            position: absolute;
            top: 70px;
            left: 0;
            right: 0;
            background: var(--primary-blue);
            flex-direction: column;
            display: none;
            text-align: center;
            padding: 15px 0;
          }



          .menu-icon {
            display: block;
          }
        }

         @media (min-width: 850px){
          .nav-links{
            display: flex;
            gap:15px
          }
        .menu-icon {
          display: none;
          font-size: 26px;
          cursor: pointer;
          color: #000;
        }
         }

    /* ===== MAIN CONTENT ===== */
    main.container { max-width:1200px; margin:auto; padding:30px 20px; }
    section { display:flex; flex-wrap:wrap; align-items:center; margin-bottom:60px; gap:20px; }
    section.alt { flex-direction:row-reverse; }
    .text { flex:1 1 400px; }
    .text h2 { color:var(--primary-blue); font-family:'Montserrat', sans-serif; margin-bottom:15px; }
    .text p, .text ul { margin-bottom:10px; font-size:1rem; color:var(--text-dark); }
    .text ul li { margin-bottom:5px; }
    .image { flex:1 1 400px; text-align:center; }
    .image img { width:100%; max-width:500px; border-radius:12px; box-shadow:var(--shadow); }

    /* ===== FOOTER ===== */
    footer { background: var(--primary-blue); color:var(--white); padding:50px 20px 20px; margin-top:40px; }
    .footer-container { display:grid; grid-template-columns:repeat(auto-fit,minmax(230px,1fr)); gap:30px; max-width:1200px; margin:auto; }
    .footer-col h3, .footer-col h4 { font-family:'Montserrat', sans-serif; margin-bottom:15px; color:var(--white); }
    .footer-col ul { list-style:none; padding:0; }
    .footer-col ul li { margin-bottom:10px; }
    .footer-col ul li a { color:#ccc; text-decoration:none; transition:0.3s; }
    .footer-col ul li a:hover { color:var(--white); }
    .footer-col p { margin:8px 0; color:#ccc; }
    .footer-col i { margin-right:8px; color:var(--secondary-blue); }
    .socials a { display:inline-block; margin-right:12px; font-size:18px; color:var(--white); transition:0.3s; }
    .socials a:hover { color:var(--secondary-blue); }
    .footer-bottom { text-align:center; border-top:1px solid rgba(255,255,255,0.2); margin-top:30px; padding-top:15px; font-size:0.9rem; color:#bbb; }
