@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');

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

html, body {
    height: 100%;
    width: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    display: flex;
    flex-direction: column;
}
a {
    text-decoration: none;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}
.header.scrolled {
    padding: 5px 15px;
}

.header.scrolled .logo {
    height: 30px;
}
.fa-house { 
    font-size: 18px;
}
.fa-house, .fa-shopping-cart {
    text-decoration: none;
    color: #858383;
    font-size: 20px;
    cursor: pointer;
    position: relative;
    flex: 0 0 auto;
}

.logo {
    height: 40px;
    transition: all 0.3s ease;
}
.favorites-title {
    text-align: center;
    padding: 20px;
    margin-top: 60px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.favorites-title h1 {
    font-size: 24px;
    color: #dd0a17;
}
.help-center {
    padding: 20px;
    background-color: #f5f5f5;
  }
  
.help-center-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 480px;
    margin: 0 auto;
}
  
.help-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
  
.help-icon {
    color: #fff;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px;
}
.help-icon i {
    font-size: 84px;
    color: #dd0a17;
}

.help-item p {
    font-size: 15px;
    color: #dd0a17;
    margin: 0;
    font-weight: bold;
}


.help-item:last-child .help-icon i,
.help-item:last-child p {
    color: gray;
}
  
/* Responsive layout */
@media (min-width: 768px) {
    .help-center-grid {
      grid-template-columns: repeat(3, 1fr);
      max-width: 768px;
    }
}
  
@media (min-width: 1024px) {
    .help-center-grid {
      grid-template-columns: repeat(5, 1fr);
      max-width: 1024px;
    }
}
@media (max-width: 768px) { 
    .help-icon { 
        width: 40px;
        height: 40px;
    }
    .help-icon i {
        font-size: 40px;
    }
    .help-item p { 
        font-size: 10px;
    }
}   