
/* General reset and body styling */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
}

/* Header styling */
header {
  background: linear-gradient(to right, #007bff, #0056b3);
  color: white;
  padding: 30px 0;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.logo {
  max-height: 120px;
  margin-bottom: 10px;
}

/* Navigation bar */
nav {
  background: #fff;
  padding: 10px 0;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

nav a {
  color: #007bff;
  text-decoration: none;
  margin: 0 12px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  position: relative;
}

/* Hover efekat */
nav a:hover {
  background-color: #0056b3;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 20px 10px rgba(0, 0, 0, 0.1);
}


/* Sections */
section {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Lists */
section ul {
  padding-left: 20px;
}

section ul li {
  margin-bottom: 10px;
}

/* Forms */
form {
  margin-top: 20px;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 16px;
}

button {
  background-color: #007bff;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
}

button:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}

.cta-button {
  display: inline-block;
  margin: 10px;
  padding: 12px 24px;
  background-color: #28a745;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #218838;
  transform: scale(1.05);
}

/* Footer */
footer {
 .footer-link {
  color: #00bcd4;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: #fff;
  transform: scale(1.05);
  text-shadow: 0 0 5px #00bcd4;
}
.contact-form-section {
  padding: 40px;
  background-color: #f0f2f5;
}

.contact-form-section h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 25px;
  color: #333;
}

form {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 20px;
}

label {
  font-weight: bold;
  margin-bottom: 8px;
  display: block;
  color: #444;
}

input, textarea {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
  border-color: #007bff;
  outline: none;
}

.btn-submit {
  background-color: #007bff;
  color: white;
  padding: 12px 30px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: #0056b3;
}

