* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #f0f4ff;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  background-color: rgba(0, 123, 255, 0.1);
  color: #007bff;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #007bff;
}

.logo img {
  height: 39px;
  width: auto;
  margin-left: -1px;
  transform: rotate(-6deg);
  transform-origin: center;
}

.logo span {
  margin-left: -5px;
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  background: none;
  border: none;
  color: #1a237e;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: cornflowerblue;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: indigo;
}

.contact-section {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
}

.contact-container {
  max-width: 900px;
  width: 100%;
  background-color: #fff;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.contact-section h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  color: #1a73e8;
  margin-bottom: 25px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.contact-item {
  background: #eaf2ff;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  transition: 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.contact-item:hover {
  background: #d8e6ff;
  transform: translateY(-3px);
}

.contact-item i {
  font-size: 2rem;
  color: #1a73e8;
  margin-bottom: 10px;
}

.contact-item a {
  display: block;
  font-weight: bold;
  font-size: 0.9rem;
  color: #1a73e8;
  margin-bottom: 5px;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-item .desc {
  font-size: 0.8rem;
  color: #555;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #1a73e8;
  color: #fff;
  margin-top: 60px;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background-color: #e0e7ff;
    width: 200px;
    padding: 20px 15px;
    border-bottom-left-radius: 10px;
    box-shadow: -4px 4px 8px rgba(0, 0, 0, 0.2);
    display: none; 
    z-index: 100;
  }

  .nav-links.active {
    display: flex;
  }
}

@media (max-width: 480px) {
  .contact-section h1 {
    font-size: 0.8rem;
    line-height: 1.2;
  }
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .contact-item a {
    font-size: 0.9rem;
  }

  .contact-item .desc {
    font-size: 0.7rem;
  }

  .contact-item i {
    font-size: 1.4rem;
  }
}