.tourism-widget-container {
  font-family: 'Georgia', serif;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.tourism-widget {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  min-height: 400px;
}

.widget-logo {
  padding: 20px 0;
  text-align: center;
  background: transparent;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.widget-logo img {
  max-height: 80px;
  max-width: 300px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.widget-background {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.widget-content {
  padding: 0;
  background: transparent;
  width: 100%;
  text-align: center;
}

.widget-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.widget-button {
  display: block;
  padding: 15px 25px;
  background: rgba(0,0,0,0.8);
  color: white;
  text-decoration: none;
  text-align: center;
  border-radius: 0;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-family: 'Arial', sans-serif;
}

.widget-button:hover {
  background: rgba(0,0,0,0.9);
  color: white;
  text-decoration: none;
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

.widget-button.button-1 { 
  background: rgba(0,0,0,0.8); 
  color: white;
}
.widget-button.button-2 { 
  background: rgba(0,0,0,0.8); 
  color: white;
}
.widget-button.button-3 { 
  background: rgba(0,0,0,0.8); 
  color: white;
}
.widget-button.button-4 { 
  background: rgba(0,0,0,0.8); 
  color: white;
}

/* Responsive design */
@media (max-width: 768px) {
  .widget-buttons {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 15px;
  }
  
  .widget-content {
    padding: 0;
  }
  
  .widget-logo {
    top: 15px;
  }
  
  .widget-logo img {
    max-height: 60px;
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .widget-buttons {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 10px;
  }
  
  .widget-button {
    padding: 12px 20px;
    font-size: 13px;
  }
} 