*{
    box-sizing: border-box;
}

body{
    font-family: "Segoe UI", sans-serif,;
    margin: 0;
    background: #f4f7fb;
    color: #253238;
}

nav{
    background: linear-gradient(120deg, #ff6600, #e7914b);
    padding: 12px 24px;
}

nav ul{
  display: flex;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 15px;
  margin-top: 10px;
}

nav a{
    color: #fff;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 8px;
}

nav a:hover, nav a:focus{
    background: #d85803;
    color: #fff;
}

header{
    background: linear-gradient(120deg, #ff6600, #e7914b);
    color: #fff;
    padding: 16px;
    text-align: center;
    font-size: 30px;
}

main{
    max-width: 960px;
    margin: 0 auto;
    padding: 40px 20px;
}

h2{
  text-align: center;
  font-size: 30px;
}

h3{
  text-align: center;
  font-size: 25px;
}

.column {
  float: left;
  width: 33.3%;
  margin-bottom: 16px;
  padding: 0 8px;
}

.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  margin: 8px;
}

.about-section {
  padding: 50px;
  text-align: center;
  background-color: #474e5d;
  color: white;
}

.container {
  padding: 0 16px;
}

.container::after, .row::after {
  content: "";
  clear: both;
  display: table;
}

.title {
  color: grey;
}

.button {
  border: none;
  outline: 0;
  display: inline-block;
  padding: 8px;
  color: white;
  background-color: #000;
  text-align: center;
  cursor: pointer;
  width: 100%;
}

.button:hover {
  background-color: #555;
}

section{
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

section h2{
    margin-top: 0;
    color: #ff6600;
}

.card{
    border: 1px solid #dde4f0;
    padding: 24px;
    border-radius: 12px;
    background: #fff;
}

#intro h2{
    color: #ff6600
}

/*footer*/

footer{
    padding: 24px;
    text-align: center;
    background: #e8edf4;
    font-size: 0.9rem;
}

img.responsive {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

.footer {
  background-color: #cccccc;
  padding: 50px 40px 30px;
  font-family: Arial, sans-serif;
  color: #444;
}

.logo img {
  width: 120px;  /* adjust size */
  height: auto;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  background-color: #d9d9d9;
}

.footer-column h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #333;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 16px;
}

.footer-column a {
  text-decoration: none;
  color: #555;
  font-size: 20px;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: #000;
}

.highlight {
  position: relative;
  font-weight: 500;
}


.footer-bottom {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-size: 40px;
  font-weight: bold;
}

.footer-bottom p {
  color: #666;
  font-size: 16px;
}

.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}
