/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html,body {
    height: 100%;

  }
  body {
    font-family: 'Roboto', sans-serif;
    background-color: #E0F7FA; /* Light blue background */
    color: #212121;
    line-height: 1.6;
    padding-bottom: 100px;

  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* Hero Section */
  .content {
    background-color: white;
    padding: 2rem;
    color: white; /* ili druga boja da bude čitko */
   
  }
  .hero-section {
    background-color: #0097A7; /* Blue background */
    color: white;
    text-align: center;
    padding: 100px 20px;
  }
  
  .hero-section h1 {
    font-size: 48px;
    font-weight: bold;
  }
  
  .hero-section p {
    font-size: 18px;
    margin-top: 20px;
  }

  
  
  .cta-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #004D40;
    color: white;
    font-weight: bold;
    margin-top: 30px;
    border-radius: 5px;
    transition: background-color 0.3s;
  }
  
  .cta-btn:hover {
    background-color: #00796B;
  }
  
  /* Services Section */
  .services-section {
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, #ffffff, #f0f8ff);
    text-align: center;
  }
  
  .services-section h2 {
    font-size: 36px;
    font-weight: bold;
    color: #00A4D9;
    margin-bottom: 10px;
  }
  .services-section h3 {
    font-size: 20px;
    font-weight: 400;
    color: #555;
    margin-bottom: 20px;
  }
  .services-section p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 18px;
    color: #424242;
  }
  .service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
  }
  
  @media (max-width: 992px) {
    .service-cards {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 600px) {
    .service-cards {
      grid-template-columns: 1fr;
    }
  }
  
  .service-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  }
  
  .service-card h3 {
    font-size: 22px;
    color: #00A4D9;
    margin-bottom: 10px;
  }
  
  .service-card p {
    font-size: 16px;
    color: #616161;
  }
  .service-icon {
  font-size: 36px;
  color: #00A4D9;
  margin-bottom: 15px;
}




  