@media screen and (min-width: 600px) {
  img[src$='#floatleft'] {
    float: left;
    width: 30%;
    padding: 0 10px 10px 0; }
  p {
    clear: both; } }

@media screen and (max-width: 600px) {
  img[src$='#floatleft'] {
    width: 80%;
    display: block;
    margin: 0 auto;
    padding-bottom: 20px; } }

.button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: white;
  color: #2196F3;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid white; }

.button:hover {
  background-color: transparent;
  color: white; }

.hero .button {
  background-color: #2196F3;
  color: white; }

.hero .button:hover {
  background-color: transparent;
  border-color: white; }

.cta .button {
  background-color: white;
  color: #2196F3; }

.cta .button:hover {
  background-color: transparent;
  color: white;
  border-color: white; }

.app-downloads {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  flex-wrap: wrap; }

.store-button {
  display: inline-block;
  text-decoration: none;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease; }

.store-button:hover {
  transform: scale(1.05);
  text-decoration: none; }

.store-btn-content {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  background: #333;
  color: white;
  min-width: 150px;
  border: 2px solid #333; }

.ios-button .store-btn-content {
  background: #000;
  border-color: #000; }

.android-button .store-btn-content {
  background: #01875f;
  border-color: #01875f; }

.store-icon {
  font-size: 2rem;
  margin-right: 10px; }

.store-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2; }

.store-text small {
  font-size: 0.75rem;
  opacity: 0.9; }

.store-text strong {
  font-size: 0.9rem;
  font-weight: 600; }
