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

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

header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
    letter-spacing: 2px;
    color: #4a5568;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem;
}

.nav-links a:hover {
    color: #4299e1;
    border-bottom: 2px solid #4299e1;
}

main {
    margin-top: 60px;
}

section {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

h1, h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 600;
}

#hero {
    background: #fff;
    color: #222;
    text-align: center;
    padding: 8rem 5% 6rem;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.price-tag {
    font-size: 2.4rem;
    color: #4299e1;
    margin-top: 1rem;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.additional-info {
    margin-top: 1.5rem;
    text-align: center;
    color: #f8f9fa;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem 2rem;
    border-radius: 4px;
}

.additional-info p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.equipment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.equipment-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.equipment-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.equipment-info {
    padding: 2rem;
}

.equipment-info h3 {
    color: #4a5568;
    margin-bottom: 1rem;
}

.equipment-info ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.equipment-info li {
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    color: #4a5568;
    margin-bottom: 1rem;
}

.service-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-content li {
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.additional-info {
    margin-top: 1rem;
    text-align: center;
    color: #666;
}

.additional-info p {
    margin: 0.5rem 0;
}

.conditions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.condition-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.condition-item h3 {
    color: #4a5568;
    margin-bottom: 1rem;
}

.condition-item ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.condition-item li {
    margin-bottom: 0.5rem;
    color: #666;
}

.price-info {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.price-info p {
    font-size: 1.1rem;
    color: #4299e1;
    margin: 0.5rem 0;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.8rem;
    color: #3498db;
    margin-bottom: 1.5rem;
}

.rental-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.rental-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.rental-card:hover {
    transform: translateY(-5px);
}

.rental-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.contact-item i {
    font-size: 2.2rem;
    color: #3498db;
    margin-bottom: 0.8rem;
}

.contact-item p {
    font-size: 1.1rem;
    color: #2c3e50;
}

#gallery {
  padding: 2rem 1rem;
  background: #f9f9f9;
}
#gallery h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #222;
  font-size: 2rem;
  letter-spacing: 1px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.13);
  transition: transform 0.3s, box-shadow 0.3s;
  background: #eaeaea;
}
.gallery-grid img:hover {
  transform: scale(1.07);
  box-shadow: 0 8px 32px rgba(66,153,225,0.18);
}

#backToTop {
  display: none;
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: #4299e1;
  color: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(44,62,80,0.18);
  cursor: pointer;
  z-index: 1001;
  font-size: 1.7rem;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
#backToTop:hover {
  background: #25422a;
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 24px rgba(66,153,225,0.23);
}
#backToTop i {
  pointer-events: none;
}
@media (max-width: 600px) {
  .logo {
    display: block;
    margin: 0 auto 12px auto;
    text-align: center;
    float: none !important;
  }
  nav {
    flex-direction: column;
    align-items: center;
  }

  #backToTop {
    bottom: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }
}

footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

@media (max-width: 1024px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 2vw;
    }
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    section {
        padding: 2rem 5%;
    }
    
    .services-grid,
    .rental-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}
