.website-bar {
    width: 100%;
    background-color: var(--btn-default-bgcolor); 
    padding: 35px 20px;
    border-bottom: 1px solid #eee;
}

.website-container {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.website-item {
    display: flex;
    align-items: flex-start;
    flex: 1;
    gap: 20px;
}

.website-icon {
    flex-shrink: 0;
}

.website-icon img {
    width: 50px; 
    height: auto;
}

.website-text h3 {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.website-text p {
    margin: 8px 0 0 0;
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}


@media (max-width: 1024px) {
  
    .website-item {
        flex: 0 0 45%; 
    }
}

@media (max-width: 600px) {
    .website-item {
        flex: 0 0 100%;
        justify-content: flex-start;
        padding: 10px 0;
    }
    
    .website-text h3 {
        font-size: 0.9rem;
    }
}