* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
        }

        .hero {
            background-image: url("../ima/hero.jpg");
            background-size: cover;
            background-position: center;
            height: 100vh;
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 20px;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            padding: 5px;
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 30px;
            max-width: 600px;
        }

        .button-container {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .button-container a {
            text-decoration: none;
            background: #006079;
            color: white;
            padding: 15px 30px;
            font-size: 1rem;
            border-radius: 5px;
            transition: background 0.3s;
        }

        .button-container a:hover {
            background: #0056b3;
        }

        nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(0, 12, 19, 0.8);
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            z-index: 1000;
            height: 50px;
        }

        .menu {
            display: none;
            flex-direction: column;
            gap: 10px;
            padding: 10px;
            position: absolute;
            right: 20px;
            top: 60px;
            background: rgba(128, 128, 128, 0.8);
            border-radius: 5px;
        }

        .menu a {
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
            padding: 10px 0;
            border-bottom: 1px solid white;
        }

        .menu a:last-child {
            border-bottom: none;
        }

        .menu a:hover {
            color: #00bfff;
        }

        .hamburger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: white;
        }

        main, section {
            padding-top: 60px;
        }


        .hero_text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80%;
            background: rgba(0, 75, 105, 0.336);
            padding: 20px;
            text-align: center;
        }

        .button-container {
            position: relative;
            top: 40%;
            transform: translateY(40%);
        }

        .footer {
            height: 180px;
            background: rgba(132,115,2,1.00);
            display: flex;
			flex-direction: column;
            justify-content: center;
            align-items: center;
            color: #fff;
			font-size: 12px;
        }

		.footer a {
  			color: #fff; 
  			text-decoration: underline; /* Remove default underline */
}
		
        .section-image {
            width: 100%;
            max-width: 400px;
            margin: 20px auto;
            border-radius: 10px;
        }

        section {
            text-align: center;
            padding: 60px;
        }

        section:nth-child(odd) {
            background: rgba(216,216,216,0.66);
        }


		
/*style btns in the content*/	
		
.button-content {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .button-content a {
            text-decoration: none;
            background: #006079;
            color: white;
            padding: 15px 30px;
            font-size: 1rem;
            border-radius: 5px;
            transition: background 0.3s;
        }

        .button-content a:hover {
            background: #0056b3;
        }
		
		.button-content {
            position: relative;
            top: 40%;
            transform: translateY(40%);
        }

/* Responsive */
        @media (max-width: 768px) {
            .button-container {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .menu {
                display: none;
            }

            .menu.active {
                display: flex;
            }
        }
