body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #f8f0e3 0%, #f1e7db 100%);
    color: #092a44;
    line-height: 1.6;
    scroll-behavior: smooth;
  }
  
  /* Loading animations */
  .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  .slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
  }
  
  .slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  .slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
  }
  
  .scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  .scale-in.visible {
    opacity: 1;
    transform: scale(1);
  }
  
  header {
    background: linear-gradient(135deg, #0d4268 0%, #1a5a8a 100%);
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
  
  .logo a {
    display: inline-block;
    text-decoration: none;
  }
  
  .logo img {
    height: 60px;
  }
  
  .company-name {
    flex: 1;
    text-align: center;
  }
  
  .company-name h1 {
    margin: 0;
    font-size: 1.5rem;
    color: #fff;
    font-weight: 500;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }
  
  nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
  }
  
  nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
  }
  
  nav a.active {
    background-color: rgba(255, 255, 255, 0.2);
    font-weight: 600;
  }
  
  /* Mobile Menu Toggle Button */
  .mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    z-index: 101;
  }
  
  .mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
  }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  
  /* Mobile Navigation */
  @media (max-width: 768px) {
    .company-name {
      display: none;
    }
    
    .mobile-menu-toggle {
      display: flex;
    }
    
    .nav-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 80%;
      max-width: 300px;
      height: 100vh;
      background: linear-gradient(135deg, #0d4268 0%, #1a5a8a 100%);
      box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
      transition: right 0.3s ease;
      z-index: 100;
      padding-top: 80px;
    }
    
    .nav-menu.active {
      right: 0;
    }
    
    .nav-menu ul {
      flex-direction: column;
      gap: 0;
      padding: 0;
    }
    
    .nav-menu li {
      width: 100%;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu a {
      display: block;
      padding: 1.5rem 2rem;
      width: 100%;
      border-radius: 0;
    }
    
    .nav-menu a:hover {
      background-color: rgba(255, 255, 255, 0.15);
      transform: none;
    }
  }
  
  /* Breadcrumbs */
  .breadcrumbs {
    background: rgba(13, 66, 104, 0.1);
    padding: 0.5rem 2rem;
    border-bottom: 1px solid rgba(13, 66, 104, 0.2);
  }
  
  .breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .breadcrumbs a {
    color: #0d4268;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  
  .breadcrumbs a:hover {
    color: #d8573c;
  }
  
  .breadcrumb-separator {
    color: #666;
    font-size: 0.9rem;
  }
  
  /* === HERO sekcia === */
  .hero {
    position: relative;
    text-align: center;
  }
  
  .hero img {
    width: 100%;
    height: 70vh; /* vždy rovnaká výška */
    object-fit: cover; /* pekne oreže obrázok */
    display: block;
  }
  
  .hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, rgba(13, 66, 104, 0.9), rgba(26, 90, 138, 0.8));
    color: white;
    padding: 2.5rem;
    border-radius: 16px;
    max-width: 90%;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  }
  
  .hero-text h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .cta-button {
    margin-top: 1rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #d8573c, #c4452a);
    color: white;
    border: none;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(216, 87, 60, 0.3);
    display: inline-block;
  }
  
  .cta-button:hover {
    background: linear-gradient(135deg, #c4452a, #b03d22);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(216, 87, 60, 0.4);
  }
  
  /* === MEDIA QUERIES pre mobil === */
  @media (max-width: 768px) {
    .nav-container {
      flex-direction: row;
      gap: 1rem;
    }
    
    .hero img {
      height: 50vh;
    }
  
    .hero-text {
      padding: 1.5rem;
      margin: 0 1rem;
    }
  
    .hero-text h1 {
      font-size: 1.4rem;
    }
  
    .cta-button {
      font-size: 0.9rem;
      padding: 0.6rem 1rem;
    }
    
    .services {
      padding: 3rem 1rem;
      overflow-x: hidden;
      box-sizing: border-box;
    }
    
    .services h2 {
      font-size: 2rem;
      padding: 0 1rem;
      word-wrap: normal;
    }
    
    .services-slider-container {
      padding: 0 3.5rem;
      margin: 2rem auto 0;
    }
    
    .service-list-wrapper {
      width: 100%;
    }
    
    .service-list {
      gap: 1rem;
    }
    
    .service {
      flex: 0 0 100%;
      width: 100%;
      padding: 1.5rem;
      min-width: 0;
    }
    
    .slider-btn {
      width: 40px;
      height: 40px;
      font-size: 1.5rem;
    }
    
    .slider-btn-prev {
      left: 0;
    }
    
    .slider-btn-next {
      right: 0;
    }
    
    .kontakt-form {
      flex-direction: column;
      padding: 3rem 1rem;
      gap: 2rem;
    }
    
    .kontakt-form h2 {
      font-size: 1.8rem;
    }
    
    .galeria {
      padding: 3rem 1rem;
    }
    
    .gallery-title {
      font-size: 2rem;
    }
    
    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
  }
  
  @media (max-width: 480px) {
    header {
      padding: 0.5rem 1rem;
    }
    
    .logo img {
      height: 50px;
    }
    
    .nav-menu {
      width: 100%;
      max-width: 100%;
    }
    
    .hero-text {
      padding: 1rem;
      margin: 0 0.5rem;
    }
    
    .hero-text h1 {
      font-size: 1.1rem;
    }
  
    .cta-button {
      font-size: 0.8rem;
      padding: 0.5rem 0.8rem;
    }
    
    .services {
      padding: 2rem 0.5rem;
    }
    
    .services h2 {
      font-size: 1.6rem;
      padding: 0 0.5rem;
      margin-bottom: 2rem;
    }
    
    .services-slider-container {
      padding: 0 2.8rem;
      margin: 1.5rem auto 0;
    }
    
    .service-list {
      gap: 0.8rem;
    }
    
    .service {
      padding: 1.2rem;
      flex: 0 0 100%;
      width: 100%;
      min-width: 0;
    }
    
    .service h3 {
      font-size: 1.1rem;
    }
    
    .service p {
      font-size: 0.9rem;
    }
    
    .service img {
      height: 60px;
    }
    
    .slider-btn {
      width: 35px;
      height: 35px;
      font-size: 1.2rem;
    }
    
    .slider-btn-prev {
      left: 0;
    }
    
    .slider-btn-next {
      right: 0;
    }
    
    .slider-indicators {
      margin-top: 1.5rem;
    }
    
    .service img {
      height: 60px;
    }
    
    .service h3 {
      font-size: 1.1rem;
    }
    
    .kontakt-info {
      padding: 1.5rem;
    }
    
    .kontakt-info p {
      font-size: 1rem;
    }
    
    .kontakt-info img {
      height: 20px;
    }
  }
  
  /* === ostatné časti stránky === */
  .services {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #fdfaf4 0%, #f8f0e3 100%);
    text-align: center;
    position: relative;
  }
  
  .services h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #092a44;
    position: relative;
  }
  
  .services h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #d8573c, #c4452a);
    border-radius: 2px;
  }
  
  /* Services Slider */
  .services-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 0 4rem;
  }
  
  .service-list-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
  }
  
  .service-list {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
    will-change: transform;
  }
  
  .service {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex: 0 0 100%;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    word-wrap: normal;
    overflow-wrap: normal;
  }
  
  .service h3 {
    word-wrap: normal;
    overflow-wrap: normal;
    hyphens: none;
  }
  
  .service p {
    word-wrap: normal;
    overflow-wrap: normal;
    hyphens: none;
  }
  
  /* Tablet - zobraziť dve vedľa seba */
  @media (min-width: 481px) and (max-width: 768px) {
    .services-slider-container {
      padding: 0 3rem;
    }
    
    .service {
      flex: 0 0 calc(50% - 0.5rem);
      width: calc(50% - 0.5rem);
      min-width: calc(50% - 0.5rem);
    }
  }
  
  /* Desktop - zobraziť všetky tri vedľa seba */
  @media (min-width: 769px) {
    .services-slider-container {
      padding: 0 2rem;
    }
    
    .service {
      flex: 0 0 calc(33.333% - 1.34rem);
      width: calc(33.333% - 1.34rem);
      min-width: calc(33.333% - 1.34rem);
    }
    
    .service-list {
      gap: 2rem;
    }
  }
  
  .service:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  }
  
  /* Slider Buttons */
  .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #0d4268, #1a5a8a);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
  }
  
  .slider-btn:hover {
    background: linear-gradient(135deg, #1a5a8a, #0d4268);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  }
  
  .slider-btn:active {
    transform: translateY(-50%) scale(0.95);
  }
  
  .slider-btn-prev {
    left: 0;
  }
  
  .slider-btn-next {
    right: 0;
  }
  
  /* Slider Indicators */
  .slider-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
  }
  
  .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(13, 66, 104, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .indicator.active {
    background-color: #0d4268;
    transform: scale(1.2);
  }
  
  .indicator:hover {
    background-color: rgba(13, 66, 104, 0.6);
  }
  
  /* Hide indicators and buttons on desktop when showing all services */
  @media (min-width: 769px) {
    .slider-indicators {
      display: none;
    }
    
    .slider-btn {
      display: none;
    }
  }
  
  /* On tablet, show indicators but make them smaller */
  @media (min-width: 481px) and (max-width: 768px) {
    .slider-indicators {
      display: flex;
    }
    
    .indicator {
      width: 10px;
      height: 10px;
    }
  }
  
  .service img {
    height: 80px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
  }
  
  .service h3 {
    font-size: 1.3rem;
    color: #092a44;
    margin: 0 0 0.5rem 0;
  }
  
  .service p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
    text-align: center;
  }
  
  /* FAQ sekcia */
  .faq {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #fdfaf4 0%, #f8f0e3 100%);
    text-align: center;
  }
  
  .faq h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #092a44;
    position: relative;
  }
  
  .faq h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #d8573c, #c4452a);
    border-radius: 2px;
  }
  
  .faq-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }
  
  .faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #0d4268, #1a5a8a);
    color: white;
    transition: all 0.3s ease;
  }
  
  .faq-question:hover {
    background: linear-gradient(135deg, #1a5a8a, #0d4268);
  }
  
  .faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 500;
  }
  
  .faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
  }
  
  .faq-item.active .faq-toggle {
    transform: rotate(45deg);
  }
  
  .faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
  }
  
  .faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
  }
  
  /* Testimonials sekcia */
  .testimonials {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f1e7db 0%, #e8dcc8 100%);
    text-align: center;
  }
  
  .testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #092a44;
    position: relative;
  }
  
  .testimonials h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #d8573c, #c4452a);
    border-radius: 2px;
  }
  
  .testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .testimonial {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  .testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  }
  
  .testimonial-content {
    margin-bottom: 1.5rem;
  }
  
  .testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
    position: relative;
  }
  
  .testimonial-content p::before {
    content: '"';
    font-size: 3rem;
    color: #d8573c;
    position: absolute;
    top: -10px;
    left: -10px;
    font-family: serif;
  }
  
  .testimonial-author h4 {
    margin: 0 0 0.5rem 0;
    color: #092a44;
    font-size: 1.2rem;
  }
  
  .testimonial-author span {
    color: #666;
    font-size: 0.9rem;
  }

  .kontakt-form {
    display: flex;
    padding: 5rem 2rem;
    gap: 4rem;
    background: linear-gradient(135deg, #f1e7db 0%, #e8dcc8 100%);
    flex-wrap: wrap;
    position: relative;
  }
  
  .kontakt-form h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #092a44;
    position: relative;
  }
  
  .kontakt-form h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #d8573c, #c4452a);
    border-radius: 2px;
  }
  
  .form, .kontakt-info {
    flex: 1;
    min-width: 300px;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #092a44;
  }
  
  form input, form textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
  }
  
  form input:focus, form textarea:focus {
    outline: none;
    border-color: #0d4268;
    box-shadow: 0 0 0 3px rgba(13, 66, 104, 0.1);
  }
  
  form textarea {
    min-height: 120px;
    resize: vertical;
  }
  
  form button {
    background: linear-gradient(135deg, #d8573c, #c4452a);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(216, 87, 60, 0.3);
    width: 100%;
  }
  
  form button:hover {
    background: linear-gradient(135deg, #c4452a, #b03d22);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(216, 87, 60, 0.4);
  }
  
  form button:active {
    transform: translateY(0);
  }
  
  .form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
  }
  
  .form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
  }
  
  .form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
  }
  
  .kontakt-info {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    height: fit-content;
  }
  
  .kontakt-info p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
  }
  
  .kontakt-info img {
    height: 24px;
    margin-right: 1rem;
    vertical-align: middle;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  }
  
  .galeria {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #fdfaf4 0%, #f8f0e3 100%);
    text-align: center;
  }
  
  .gallery-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #092a44;
    position: relative;
  }
  
  .gallery-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #d8573c, #c4452a);
    border-radius: 2px;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    justify-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .gallery-grid img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  }
  
  footer {
    background: linear-gradient(135deg, #0d4268 0%, #1a5a8a 100%);
    color: white;
    text-align: center;
    padding: 2rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  }
  
  footer p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
  }
  
  /* Floating CTA Button */
  .floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
  }
  
  .floating-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #d8573c, #c4452a);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 8px 25px rgba(216, 87, 60, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
  }
  
  .floating-button:hover {
    background: linear-gradient(135deg, #c4452a, #b03d22);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(216, 87, 60, 0.6);
  }
  
  .floating-icon {
    font-size: 1.2rem;
  }
  
  .floating-text {
    font-size: 1rem;
  }
  
  @keyframes pulse {
    0% {
      box-shadow: 0 8px 25px rgba(216, 87, 60, 0.4);
    }
    50% {
      box-shadow: 0 8px 25px rgba(216, 87, 60, 0.6);
    }
    100% {
      box-shadow: 0 8px 25px rgba(216, 87, 60, 0.4);
    }
  }
  
  @media (max-width: 768px) {
    .floating-cta {
      bottom: 1rem;
      right: 1rem;
    }
    
    .floating-button {
      padding: 0.8rem 1.2rem;
    }
    
    .floating-text {
      display: none;
    }
  }
  
  .img-wrapper {
    width: 100%;
    max-width: 300px;
    height: 200px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .img-wrapper:hover img {
    transform: scale(1.08);
  }
  
  .gallery-title a {
    text-decoration: none;
    color: inherit;
  }
  
  .gallery-link {
    text-decoration: none;
    color: inherit;
  }
  
  .gallery-link:hover {
    color: #d8573c;
  }
