:root {
      --hp-blue: #0096d6;
      --hp-dark: #0f2650;
      --hp-light: #f5f9fc;
      --hp-gray: #6e6e6e;
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: 'Poppins', 'HP Simplified', sans-serif;
      background-color: var(--hp-light);
      color: var(--hp-dark);
    }
    a {
      text-decoration: none;
      color: inherit;
    }

   
/*{{{{ MY HEADER }}}}*/

header {
            border-radius: 10px;
            border: 2px solid #D3D3D3; /* Border for the entire header */
            background: #ffffff;
            box-shadow: 0 2px 8px rgba(66, 97, 235, 0.05);
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .logo {
            max-height: 70px;
        }

        .website-name {
            font-size: 24px;
            font-weight: 700;
            color: #07171e; /* Professional blue color */
            margin-left: 15px;
            font-family: Verdana, Geneva, Tahoma, sans-serif;
            text-shadow: 0 1px 2px rgba(142, 130, 130, 0.1); /* Subtle shadow for depth */
            align-self: center;
        }

        .logo-container {
            display: flex;
            align-items: center; /* Vertically align logo and website name */
        }

        .nav {
            display: flex;
            gap: 18px;
        }

        .nav a {
            font-size: 18px; /* Professional text size */
            font-weight: 500; /* Medium weight for professionalism */
            color: var(--hp-dark);
            transition: all 0.3s;
            padding: 8px 16px; /* Slightly increased padding */
            border-radius: 10px; /* Rounded corners */
            text-decoration: none; /* Remove underline */
            background-color: var(--hp-light); /* Light blue background */
        }

        .nav a:hover {
            background-color: #D0E4FF; /* Slightly darker light blue on hover */
        }

        .menu-toggle {
            z-index: 1001;
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .menu-toggle span {
            height: 3px;
            width: 25px;
            background: var(--hp-blue);
            margin: 4px 0;
            border-radius: 2px;
        }

        #menu-checkbox {
            display: none;
        }

        @media (max-width: 768px) {
            .nav {
                left: -100%;
                top: 0;
                height: 100vh;
                flex-direction: column;
                background: var(--hp-blue);
                width: 250px;
                position: fixed;
                padding-top: 70px;
                transition: left 0.3s;
            }

            .nav a {
                color: rgb(255, 255, 255);
                border-top: 1px solid #ffffff30;
                text-align: center;
                font-size: 20px; /* Slightly larger for mobile readability */
                background-color: transparent; /* Remove light blue background on mobile */
            }

            .nav a:hover {
                background-color: rgba(255, 255, 255, 0.1); /* Subtle hover effect on mobile */
            }

            #menu-checkbox:checked + .menu-toggle + .nav {
                left: 0;
                display: flex;
            }

            .menu-toggle {
                display: flex;
            }

            .website-name {
                font-size: 20px; /* Slightly smaller for mobile */
                color: #15323e; /* Maintain blue color */
            }
        }

    

    /*{{{{ MY HEADER CLOSED }}}}*/


    /*{{{{ MY SECTION }}}}*/


    section {
            background-image: url('images/2.png'); /* Replace with your background image */
            background-size: cover;
            background-position: center;
            padding: 80px 20px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 600px;
        }

        .overlay {
            background-color: rgba(54, 74, 69, 0.968);
            padding: 40px;
            border-radius: 12px;
            max-width: 1200px;
            width: 90%;
            margin: auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        .content {
            flex: 1;
            min-width: 300px;
            color: white;
            text-align: left;
            display: flex;
            flex-direction: column;
            justify-content: center;
            max-width: 50%;
        }

        .content h1 {
            font-size: 2.5rem;
            color: #9c9cff;
            margin-bottom: 20px;
        }

        .content p {
            font-size: 1.1rem;
            color: #ddd;
            margin-bottom: 30px;
        }

        .content a {
            color: #4ecdc4;
            text-decoration: none;
            font-weight: bold;
        }

        .content a:hover {
            text-decoration: underline;
        }

        .content button {
            padding: 14px 28px;
            font-size: 1rem;
            color: white;
            background-color: #0077cc;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s ease;
            align-self: flex-start;
            width: 100%;
            max-width: 300px;
        }

        .content button:hover {
            background-color: #005fa3;
            transform: translateY(-2px);
        }

        .options {
            margin-top: 20px;
            display: none;
            width: 100%;
        }

        .options button {
            background-color: #4ecdc4;
            padding: 14px;
            font-size: 1rem;
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s ease;
            width: 100%;
            max-width: 300px;
        }

        .options button:hover {
            background-color: #3bb3ab;
            transform: translateY(-2px);
        }

        .image-container {
            flex: 1;
            min-width: 300px;
            max-width: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .image-container img {
            max-width: 100%;
            max-height: 350px;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            object-fit: cover;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            section {
                padding: 50px 15px;
                min-height: 500px;
            }

            .overlay {
                flex-direction: column;
                padding: 30px;
                gap: 20px;
            }

            .content {
                text-align: center;
                max-width: 100%;
            }

            .content h1 {
                font-size: 2rem;
            }

            .content p {
                font-size: 1rem;
            }

            .content button {
                align-self: center;
                max-width: 100%;
            }

            .options button {
                max-width: 100%;
            }

            .image-container {
                max-width: 100%;
            }

            .image-container img {
                max-width: 80%;
                max-height: 250px;
            }
        }

        @media (max-width: 480px) {
            .content h1 {
                font-size: 1.8rem;
            }

            .content p {
                font-size: 0.9rem;
            }

            section {
                padding: 30px 10px;
                min-height: 400px;
            }

            .overlay {
                padding: 20px;
            }

            .content button, .options button {
                padding: 12px;
                font-size: 0.9rem;
            }

            .image-container img {
                max-width: 100%;
                max-height: 200px;
            }
        }


        /*{{{{ MY SECTION CLOSED }}}}*/


    .issues-section {
      background: #ffffff;
      padding: 40px 20px;
      display: block;
    }
    .issues-section h2 {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 30px;
      color: var(--hp-dark);
    }
    .issue-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .issue-list li {
      list-style: none;
      background: var(--hp-light);
      padding: 20px;
      border-radius: 8px;
      transition: all 0.3s ease;
      min-height: 180px;
    }
    .issue-list li:hover {
      transform: translateY(-3px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .issue-list span {
      font-size: 1.6rem;
      display: inline-block;
      margin-bottom: 10px;
    }
    .issue-list h3 {
      font-size: 1.1rem;
      margin-bottom: 5px;
      color: var(--hp-blue);
    }
    .issue-list p {
      font-size: 0.9rem;
      color: var(--hp-gray);
    }




        


        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
        }

        .footer-section {
            flex: 1;
            min-width: 300px;
            padding: 20px;
            background: #444;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .footer-section h2 {
            color: #ff6b6b;
            font-size: 1.8em;
            margin-bottom: 15px;
        }

        .footer-section p, .footer-section li {
            font-size: 1.1em;
            color: #ddd;
            margin-bottom: 10px;
        }

        .footer-section ul {
            list-style-type: disc;
            margin-left: 20px;
        }

        .footer-section a {
            color: #4ecdc4;
            text-decoration: none;
            font-weight: bold;
        }

        .footer-section a:hover {
            text-decoration: underline;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #555;
        }

        .footer-bottom p {
            font-size: 1em;
            color: #bbb;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .footer-container {
                flex-direction: column;
                align-items: center;
            }

            .footer-section {
                min-width: 100%;
            }

            .footer-section h2 {
                font-size: 1.5em;
            }

            .footer-section p, .footer-section li {
                font-size: 1em;
            }
        }

        @media (max-width: 480px) {
            .footer-section h2 {
                font-size: 1.3em;
            }

            .footer-section p, .footer-section li {
                font-size: 0.9em;
            }

            footer {
                padding: 20px 15px;
            }
        }


         .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        .header {
            background-color: #2c3e50;
            color: #fff;
            padding: 20px;
            text-align: center;
            border-radius: 8px;
        }
        .header h1 {
            margin: 0;
            font-size: 2.5em;
        }
        .section {
            background-color: #fff;
            padding: 20px;
            margin: 20px 0;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        .section h2 {
            color: #2c3e50;
            font-size: 1.8em;
            margin-bottom: 10px;
        }
        .section p {
            font-size: 1.1em;
            color: #555;
        }
        .qa-section {
            background-color: #e8f0fe;
            padding: 20px;
            border-radius: 8px;
            margin-top: 20px;
        }
        .qa-section h3 {
            color: #1a73e8;
            font-size: 1.5em;
            margin-bottom: 10px;
        }
        .qa-section .question {
            font-weight: bold;
            color: #2c3e50;
            margin-top: 15px;
        }
        .qa-section .answer {
            color: #555;
            margin-bottom: 10px;
        }
        .qa-section .explanation {
            font-style: italic;
            color: #777;
            margin-bottom: 20px;
        }
        .cta {
            text-align: center;
            margin: 20px 0;
        }
        .cta a {
            background-color: #1a73e8;
            color: #fff;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 5px;
            font-size: 1.1em;
        }
        .cta a:hover {
            background-color: #1557b0;
        }
        footer {
            background-color: #2c3e50;
            color: #fff;
            text-align: center;
            padding: 10px;
            position: relative;
            bottom: 0;
            width: 100%;
            margin-top: 20px;
        }