
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #003366;
  position: relative;
}

.background {
  background-image: url('assets/bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

header {
  background-color: #003366;
  color: white;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 50px;
  height: auto;
}

.button {
  background-color: white;
  color: #003366;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease-in-out;
}

.button.large {
  font-size: 1.1em;
}

.button:hover {
  transform: scale(1.05);
}

main {
  padding: 20px;
  max-width: 1000px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.95);
}

section {
  margin-bottom: 30px;
}

ul {
  padding-left: 20px;
}

form input, form textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 8px;
  border: 1px solid #003366;
  border-radius: 4px;
}

form input[type="submit"] {
  background-color: #003366;
  color: white;
  border: none;
  cursor: pointer;
}

footer {
  background-color: #f0f0f0;
  color: #003366;
  text-align: center;
  padding: 15px;
  font-size: 14px;
}

.intro {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.intro-text {
  flex: 1 1 60%;
}

.intro-card {
  flex: 1 1 35%;
}

.card-frame {
  width: 100%;
  min-height: 360px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.business-card-img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 6px rgba(0,0,0,0.3);
  margin-bottom: 10px;
}

.contact-me {
  background-color: #f4f8fc;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 0 4px rgba(0,0,0,0.1);
  font-size: 0.95rem;
}

.more-contacts {
  margin-top: 10px;
  background-color: #003366;
  color: white;
  display: inline-block;
  padding: 8px 14px;
  border-radius: 5px;
  font-weight: bold;
}
.more-contacts a {
  color: #ffffff;
  text-decoration: underline;
}


.business-card-img {
  width: 90%;
  max-width: 220px;
  border-radius: 8px;
  box-shadow: 0 0 6px rgba(0,0,0,0.3);
  margin-bottom: 10px;
}

.intro {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 20px;
}

.intro-text {
  flex: 1 1 60%;
}

.intro-card {
  flex: 1 1 35%;
}

section {
  margin-bottom: 24px;
}

.button.secondary {
  background-color: #ffffff;
  color: #003366;
  border: 2px solid #003366;
}
.button.secondary:hover {
  background-color: #e8f0fa;
}
