body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: #333333;
    color: #222;
}
header {
    background: url('images/header_road.jpg') center/cover no-repeat;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
header h1 {
    font-size: 3rem;
    margin: 0;
}
.section {
    margin-bottom: 40px;
}
.section h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: #0077b6;
}
.services {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.service {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 24px;
    flex: 1 1 250px;
    min-width: 220px;
}
.about {
	width: 100%;
	max-width: 1400px;
	margin: 20px auto 0 auto;
	text-align: center;
	background-color: rgb(180, 180, 180);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 24px;
	align-items: center;
}
form {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
input, textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}
button {
    background: #0077b6;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: bold;
}
button:hover {
    background: #023e8a;
}
.container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  max-width: 1400px;
  margin: 20px auto;
  padding: 0 20px;
  border-radius: 8px;
  height: 248px;
}
.img-container {
  flex: 1 1 auto;
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  background-color: rgb(180, 180, 180);
  padding: 24px;
  box-shadow: 0 8px 32px rgba(255,255,255,0.5);
  width: 100%;
}

.img-square {
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
  /*box-shadow: 0 2px 8px rgba(0,0,0,0.07);*/
  box-shadow: none;
}

.img-square img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  
}

.img-square img.enlarged {
  transform: scale(2);
  transition: transform 0.3s ease;
  }
  
.img-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.img-overlay-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  z-index: 1;
}
.img-overlay img {
  position: relative;
  z-index: 2;
  max-width: 800px;
  max-height: 80vh;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
  display: block;
  margin: 0 auto;
}
.img-container img:hover {
  transform: scale(1.2); 
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.out-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1400px;
  margin: 0px auto;
  padding: 0;
  background-color: #333333;
  z-index: 10;
  height: 248px;
  
}

#prevBtn, #nextBtn {
  min-width: 48px;
  min-height: 48px;
  height: 80%;
  align-self: center;
  font-size: 2rem;
  background: #0077b6;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}


#prevBtn {
  width: 60px;
  height: 248px;
  min-width: 60px;
  min-height: 248px;
  border-radius: 24px 0 0 24px;
  font-size: 2rem;
  background: rgb(59, 100, 70);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}

#nextBtn {
  width: 60px;
  height: 248px;
  min-width: 60px;
  min-height: 248px;
  border-radius: 0 24px 24px 0;
  font-size: 2rem;
  background: rgb(59, 100, 70);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}