/* Общи стилове */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    color: #333;
}

a {
    text-decoration: none;
    color: #0066cc;
}
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    margin-top: 10px;
  }

  .nav a {
    display: block;
    margin: 5px 0;
  }
}


/* Заглавие и описание */
.hero {
    text-align: center;
    padding: 50px;
    background: #0066cc;
    color: white;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #ff5722;
    padding: 15px 30px;
    color: white;
    border-radius: 5px;
    font-size: 1.2rem;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #e64a19;
}
.header1 {
  position: relative;
  min-height: 50px;

}

.logo1 {
  position: absolute;
  top: 10px;
  left: 10px;
  height: 30px; /* Малко лого */
  width: auto;
  z-index: 10; /* За да не се крие зад други елементи */
}
.nav a {
  margin-left: 15px;
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

/* Навигация */
header {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
}

header .logo img {
    width: 150px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    color: #333;
    font-size: 1rem;
}

/* Страница с информация */
.about {
    padding: 50px;
    text-align: center;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about p {
    font-size: 1rem;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}

footer a {
    color: #fff;
}

footer p {
    font-size: 0.9rem;
}

/* Мобилна адаптация */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .about p {
        font-size: 0.9rem;
    }
}
