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

body {
  font-family: 'Arial', sans-serif;
  background-color: #c0c0c0;
  color: #002b5c;
  text-align: center;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background-color: transparent;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 60px;
  height: auto;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #002b5c;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #000;
}

/* Hero Section */
.hero {
  margin: 50px 0;
}

.hero h2 {
  font-size: 2.5rem;
  font-style: italic;
  font-weight: bold;
}

.tagline {
  font-style: italic;
  margin-top: 10px;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  border: 2px solid #002b5c;
  border-radius: 25px;
  color: #002b5c;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn:hover {
  background: #002b5c;
  color: white;
}



body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  background-color: #f8f8f8;
  color: #333;
}


.back-home {
  display: inline-block;
  margin-bottom: 20px;
  text-decoration: none;
  background-color: #aaa;
  color: white;
  padding: 8px 14px;
  border-radius: 5px;
}

.back-home:hover {
  background-color: #888;
}


.brand, .aboutt {
  display: flex;
  align-items: flex-start;
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0px 2px 10px rgba(0,0,0,0.1);
  margin-bottom: 20px;
  gap: 15px; 


.brand img, 
.aboutt img {
  width: 150%;
  height: auto;
  border-radius: 10px;
  
  margin-left:50%;
}


.aboutt p {
  margin: 0;
  line-height: 1.5;
}


h1, h4 {
  margin-top: 0;
  color: #444;
}


@media (max-width: 600px) {
  .brand, .aboutt {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .brand img, 
  .aboutt img {
    width: 120px;
  }
}
