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

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
}

/* Sticky Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #333;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.5em;
  font-weight: bold;
}
a {
    color: #000000; /* Default link color (white) */
    text-decoration: none; /* Optional: Remove underline */
}

a:visited {
    color: #ff0000; /* Same as default link color */
}

a:hover {
    color: #ff0000; /* Optional: Change color on hover */
}

a:active {
    color: #ff0000; /* Optional: Change color when clicked */
}
.contact-info {
  font-size: 0.9em;
  margin-top: 5px;
}

.contact-info p {
  margin: 2px 0;
}

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

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 1.1em;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #00bcd4;
}

/* Burger Icon */
.menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-icon span {
  width: 25px;
  height: 3px;
  background-color: white;
  transition: transform 0.3s, opacity 0.3s;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .menu-icon {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    position: absolute;
    top: 90px;
    right: 20px;
    background-color: #444;
    width: 150px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    text-align: center;
    padding: 10px 0;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links li {
    margin: 10px 0;
  }
}

/* Container for all sections */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* About Us Section */
.about-us {
  background-color: #fff;
  padding: 50px 0;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.about-us h2 {
  text-align: center;
  margin-bottom: 20px;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-content img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.info h3 {
  font-size: 1.5em;
}

/* Services Section */
.services {
  background-color: #fff;
  padding: 50px 0;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.services h2 {
  text-align: center;
  margin-bottom: 20px;
}

.service-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.service-item {
  background-color: #f4f4f4;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.service-item h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
}

/* FAQ Section */
.faq {
  background-color: #fff;
  padding: 50px 0;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.faq h2 {
  text-align: center;
  margin-bottom: 20px;
}

.faq-item {
  margin-bottom: 15px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 10px;
  background-color: #f4f4f4;
  border-radius: 8px;
}

.faq-question h3 {
  font-size: 1.1em;
}

.faq-answer {
  display: none;
  padding: 10px;
  background-color: #fff;
  border-radius: 8px;
  margin-top: 10px;
}

.faq-answer.active {
  display: block;
}

.toggle-icon {
  font-size: 1.2em;
}

/* Contact Section */
.contact {
  background-color: #fff;
  padding: 50px 0;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact h2 {
  text-align: center;
  margin-bottom: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.form-group textarea {
  resize: vertical;
}

.contact-form button {
  padding: 10px 20px;
  background-color: #00bcd4;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #0097a7;
}

.two-images-section {
    display: flex;
    align-items: center;
    padding: 20px;
}

.image-container {
    width: 50%;
    padding: 10px;
    box-sizing: border-box;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* Допълнителни стилове (по желание) */
.two-images-section {
    max-width: 1200px;
    margin: 0 auto;
}

.image-container:first-child {
    padding-right: 5px;
}

.image-container:last-child {
    padding-left: 5px;
}
.floating-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  background-color: #e6ffe6;
  padding: 10px 0;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
  z-index: 9999;
}

.floating-buttons a {
  flex: 1;
  margin: 0 10px;
  text-align: center;
  background-color: #28a745;
  color: white;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  padding: 12px 0;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.floating-buttons a:hover {
  background-color: #218838;
}

.floating-buttons i {
  margin-right: 8px;
  font-size: 20px;
  vertical-align: middle;
}


/* Footer */
footer {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

.footer_links {
	color: #fff;
}