* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
    font-family: 'Gadugi', 'Calibri', Arial, sans-serif;
    color: white;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
a{
        color: #fea42c;
}
a:hover{
color: #fff;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    height: 140px;
    padding: 0 70px;
}

.logo img {
    height: 70px;
}

.logo-mobile {
    display: none;
}

.phone-number {
    font-size: 18px;
}

/* Basic styling for navigation */
nav {
    background-color: #212121;
    padding: 10px;
}

nav ul {
    list-style-type: none;
    margin: 0 20px;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-right: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    display: block;
}

nav ul li a:hover {
    background-color: #575757;
    border-radius:5px;
    transition: background-color 0.3s ease, opacity 0.3s ease; 
}

.hero {
    display: grid;
    grid-template-columns: 28% 72%;
    padding: 20px 20px;
    flex-grow: 1;
}

.hero-image {
    background-image: url('../images/DANR_background.jpg');
    background-size: cover;
    background-position: center;
    height: 100%;
}

.common-container {
    display: grid;
    grid-template-columns: 100%;
    padding: 20px 20px;
}

.document1 {
    text-align: left;
    padding: 10px;
    margin-bottom: 20px;
}

.document1 h2 {
    font-size: 22px;
    padding-bottom: 10px;
}

.danr-graphic {
    text-align: center;
    padding: 10px;
}

.danr-graphic img {
    height: 400px;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: left;
    padding: 20px;
    height: 100%;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: left;
}

.hero h4 {
    font-size: 32px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 25px;
    margin-bottom: 10px;
    line-height: 1.5;
    text-align: left;
    color: #fea42c;
}

.hero .email {
    font-size: 18px;
    text-align: left;
}

.cta-button {
    display: inline-block;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: bold;
    background-color: #fff;
    color: #000;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #fea42c;
    color: #000;
}

.footer {
    margin: 40px 70px;
    padding-top: 20px;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1;
}

.footer .copyright {
    font-size: 11px;
    color: gray;
}

.footer .copyright a {
    color: #a3a3a3;
}
  .container {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
    }
.d-link{
 display: inline-block; 
  color: #fff;
  background: url('../images/ico-download.png') no-repeat left center;
  background-size: 20px 20px; 
  padding-left: 28px; 
  line-height: 34px;
  height: 34px;
  text-decoration: none;
  cursor: pointer;
}
    .cover-box {
      background: #3f3f3f;
      border-radius: 10px;
	  border: 1px solid #606060;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      width: 400px;
      text-align: center;
      cursor: pointer;
      transition: transform 0.2s ease;
      text-decoration: none;
      color: inherit;
	  padding:20px;
	  margin-top:28px;
    }

    .cover-box:hover {
      transform: translateY(-5px);
	   background: #565656;
    }

    .cover-box img {
      width: 100%;
      height: auto;
      border-radius: 10px; 
	  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);	  
    }

    .cover-title {
      padding: 4px 15px 15px 15px;
      font-size: 18px;
      font-weight: bold;
	  color: #fea42c;
    }




@media (max-width: 768px) {
    .logo {
        display: none !important;
    }

    .logo-mobile {
        display: block !important;
        text-align: center;
    }

    .hero {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .phone-number {
        font-size: 14px;
    }

    .footer {
        margin: 40px 50px;
    }

    .footer {
        margin: 40px 20px;
        text-align: center;
    }

    .footer .copyright {
        font-size: 10px;
    }
}